/* ===== VARIABLES ===== */
:root {
    --primary-color: #d01323;        /* Vibrant red */
    --primary-dark: #e63946;          /* Darker red */
    --primary-light: #ff6b7b;         /* Light red */
    --secondary-color: #f4a261;       /* Warm orange/amber */
    --accent-color: #e9c46a;          /* Golden yellow */
    --dark-bg: #2b2d42;                /* Dark blue-gray */
    --text-dark: #2c3e50;
    --text-light: #05080f;
    --white: #ffffff;
    --gray-medium: #8b949e;
    --gradient-1: linear-gradient(135deg, #d01323, #d63838);
    --gradient-2: linear-gradient(135deg, #d01323, #d63838);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --footer-bg-dark: #0a0f1a;
    --footer-bg-darker: #05080f;
    --footer-text: #e0e4e8;
    --footer-text-muted: #8b949e;
    --footer-border: rgba(255,255,255,0.08);
    --footer-gradient: linear-gradient(135deg, #0a0f1a 0%, #0c1220 50%, #0a0f1a 100%);
    --footer-glow: 0 0 20px rgba(214,40,40,0.1);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER STYLES ===== */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: .2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 90px;
    width: auto;
    max-width: 200px;
    display: block;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
        align-items: center;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #d72836;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active {
    color: #d72836;
    font-weight: 600;
}

.nav-link.active::before {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    min-height: 44px;
    min-width: 44px;
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    padding: 80px 2rem 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav .nav-link {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-left: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    border: none;
    cursor: pointer;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Mobile nav logo styling */
.mobile-logo-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mobile-logo-item .nav-link {
    padding: 0;
}

.mobile-logo-item .nav-link:hover::before {
    display: none;
}

.mobile-logo-item img {
    height: 40px;
    width: auto;
}

/* ==========================================================================
   FOOTER - MOREROOM STONE NIGERIA
   ========================================================================== */

/* ==========================================================================
   START: FOOTER BASE STYLES
   ========================================================================== */
.modern-footer {
    background: var(--footer-gradient);
    color: var(--footer-text);
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
}

/* Animated Gradient Border */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--primary-light), 
        var(--secondary-color), 
        var(--primary-color));
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
    z-index: 1;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Background Pattern */
.modern-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(214,40,40,0.03) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 20px);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   END: FOOTER BASE STYLES
   ========================================================================== */

/* ==========================================================================
   START: FOOTER MAIN GRID
   ========================================================================== */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   END: FOOTER MAIN GRID
   ========================================================================== */

/* ==========================================================================
   START: LOGO & DESCRIPTION
   ========================================================================== */
/* .footer-logo {
    margin-bottom: 0.5rem;
} */

.footer-logo-image {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all var(--transition-medium);
}

.footer-logo-image:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(214,40,40,0.5));
    transform: scale(1.02);
}

.footer-description {
    color: var(--footer-text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   END: LOGO & DESCRIPTION
   ========================================================================== */

/* ==========================================================================
   START: SOCIAL LINKS
   ========================================================================== */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transition: all var(--transition-fast);
    color: var(--footer-text);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 0;
}

.social-link svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: all var(--transition-fast);
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--white);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   END: SOCIAL LINKS
   ========================================================================== */

/* ==========================================================================
   START: FOOTER TITLES & LINKS
   ========================================================================== */
.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: width var(--transition-fast);
}

.footer-column:hover .footer-title::after {
    width: 60px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: slideInLeft 0.4s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.05s);
}

.footer-links li:nth-child(1) { --item-index: 1; }
.footer-links li:nth-child(2) { --item-index: 2; }
.footer-links li:nth-child(3) { --item-index: 3; }
.footer-links li:nth-child(4) { --item-index: 4; }
.footer-links li:nth-child(5) { --item-index: 5; }
.footer-links li:nth-child(6) { --item-index: 6; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-link {
    color: var(--footer-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all var(--transition-fast);
    color: var(--primary-color);
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-link:hover::before {
    opacity: 1;
    left: -10px;
}

/* ==========================================================================
   END: FOOTER TITLES & LINKS
   ========================================================================== */

/* ==========================================================================
   START: CONTACT ITEMS
   ========================================================================== */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--footer-text-muted);
    transition: all var(--transition-fast);
    opacity: 0;
    animation: fadeInRight 0.4s ease forwards;
    animation-delay: calc(var(--contact-index, 0) * 0.05s);
}

.contact-item:nth-child(1) { --contact-index: 1; }
.contact-item:nth-child(2) { --contact-index: 2; }
.contact-item:nth-child(3) { --contact-index: 3; }
.contact-item:nth-child(4) { --contact-index: 4; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-item:hover {
    transform: translateX(5px);
    color: var(--white);
}

.contact-icon {
    fill: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    transition: all var(--transition-fast);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    fill: var(--secondary-color);
}

.contact-text {
    color: var(--footer-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color var(--transition-fast);
}

a.contact-text:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   END: CONTACT ITEMS
   ========================================================================== */

/* ==========================================================================
   START: SHOWROOMS SECTION
   ========================================================================== */
.footer-showrooms {
    margin: 3rem 0 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--footer-border);
    border-bottom: 1px solid var(--footer-border);
    position: relative;
    overflow: hidden;
}

.footer-showrooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214,40,40,0.05), transparent);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.footer-showrooms .footer-title {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-showrooms .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
}

.footer-column:hover .footer-title::after {
    width: 70px;
}

.showrooms-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.showroom-item {
    color: var(--footer-text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
    border-radius: 12px;
    transition: all var(--transition-fast);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.showroom-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width var(--transition-medium);
}

.showroom-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    color: var(--white);
}

.showroom-item:hover::before {
    width: 100%;
}

.showroom-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* ==========================================================================
   END: SHOWROOMS SECTION
   ========================================================================== */

/* ==========================================================================
   START: CTA BUTTONS
   ========================================================================== */
.footer-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.footer-cta-button {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-medium);
    z-index: -1;
}

.footer-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
}

.footer-cta-button:hover::before {
    left: 100%;
}

.footer-cta-button-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: none;
    position: relative;
}

.footer-cta-button-secondary::before {
    background: var(--gradient-1);
    left: 0;
    top: 0;
    width: 0;
    transition: width var(--transition-medium);
    z-index: -1;
}

.footer-cta-button-secondary:hover {
    border-color: transparent;
    color: var(--white);
}

.footer-cta-button-secondary:hover::before {
    width: 100%;
}

/* ==========================================================================
   END: CTA BUTTONS
   ========================================================================== */

/* ==========================================================================
   START: FOOTER BOTTOM & LEGAL LINKS
   ========================================================================== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--footer-text-muted);
    border-top: 1px solid var(--footer-border);
    position: relative;
}

.copyright {
    margin: 0;
    position: relative;
}

.copyright::before {
    content: '✦';
    margin-right: 0.5rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: var(--footer-text-muted);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-1);
    transition: width var(--transition-fast);
}

.legal-link:hover {
    color: var(--white);
}

.legal-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   END: FOOTER BOTTOM & LEGAL LINKS
   ========================================================================== */

/* ==========================================================================
   START: FOOTER ANIMATIONS
   ========================================================================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Scroll-triggered animations */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   END: FOOTER ANIMATIONS
   ========================================================================== */

/* ==========================================================================
   START: RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .showrooms-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column:hover .footer-title::after {
        width: 50px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-link::before {
        display: none;
    }
    
    .footer-link:hover {
        transform: translateX(0) scale(1.05);
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .showrooms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .showroom-item {
        padding: 0.75rem;
    }
    
    .footer-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-cta-button {
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 2rem 1rem 1rem;
    }
    
    .footer-logo-image {
        height: 80px;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 380px) {
    .footer-main {
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-bottom: 0.25rem;
    }
}
/* ==========================================================================
   END: RESPONSIVE STYLES
   ========================================================================== */

   /* ==========================================================================
   BACK TO TOP BUTTON - MOREROOM STONE NIGERIA
   ========================================================================== */

/* ==========================================================================
   START: BACK TO TOP BUTTON STYLES
   ========================================================================== */
.footer-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    overflow: hidden;
    position: fixed;
}

/* Visible state */
.footer-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    bottom: 2rem;
}

/* Hover Effects */
.footer-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.5);
    background: var(--gradient-1);
}

.footer-back-to-top:active {
    transform: translateY(-2px);
}

/* Icon Styling */
.footer-back-to-top svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    transition: all var(--transition-fast);
    position: relative;
    z-index: 2;
}

.footer-back-to-top:hover svg {
    transform: translateY(-3px);
    animation: bounce 0.6s ease;
}

/* Ripple Effect on Click */
.footer-back-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.footer-back-to-top:active::before {
    width: 100%;
    height: 100%;
}

/* Pulse Animation (always visible) */
.footer-back-to-top.visible {
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(214, 40, 40, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(214, 40, 40, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-3px);
    }
    50% {
        transform: translateY(0);
    }
}

/* ==========================================================================
   END: BACK TO TOP BUTTON STYLES
   ========================================================================== */

/* ==========================================================================
   START: ADDITIONAL VARIATIONS
   ========================================================================== */

/* Alternative Style - With Glow Effect */
.footer-back-to-top.glow {
    background: var(--gradient-1);
    box-shadow: 0 0 20px rgba(214, 40, 40, 0.5);
}

.footer-back-to-top.glow:hover {
    box-shadow: 0 0 30px rgba(214, 40, 40, 0.8);
}

/* Alternative Style - With Border */
.footer-back-to-top.border {
    background: transparent;
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.footer-back-to-top.border svg {
    fill: var(--primary-color);
}

.footer-back-to-top.border:hover {
    background: var(--gradient-1);
    border-color: transparent;
}

.footer-back-to-top.border:hover svg {
    fill: var(--white);
}

/* Alternative Style - Smaller Version */
.footer-back-to-top.small {
    width: 40px;
    height: 40px;
    bottom: 1.5rem;
    right: 1.5rem;
}

.footer-back-to-top.small svg {
    width: 18px;
    height: 18px;
}

/* Alternative Style - Larger Version */
.footer-back-to-top.large {
    width: 60px;
    height: 60px;
    bottom: 2.5rem;
    right: 2.5rem;
}

.footer-back-to-top.large svg {
    width: 28px;
    height: 28px;
}

/* ==========================================================================
   END: ADDITIONAL VARIATIONS
   ========================================================================== */

/* ==========================================================================
   START: RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 768px) {
    .footer-back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .footer-back-to-top.visible {
        bottom: 1.5rem;
    }
    
    .footer-back-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .footer-back-to-top:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 480px) {
    .footer-back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .footer-back-to-top.visible {
        bottom: 1rem;
    }
    
    .footer-back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 380px) {
    .footer-back-to-top {
        width: 38px;
        height: 38px;
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .footer-back-to-top.visible {
        bottom: 0.75rem;
    }
    
    .footer-back-to-top svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   END: RESPONSIVE STYLES
   ========================================================================== */

/* ==========================================================================
   START: SCROLL PROGRESS INDICATOR (Optional)
   ========================================================================== */
/* You can add this to show scroll progress around the button */
.footer-back-to-top.progress {
    background: transparent;
    box-shadow: none;
}

.footer-back-to-top.progress::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) var(--scroll-progress, 0deg), rgba(214,40,40,0.2) var(--scroll-progress, 0deg));
    z-index: -1;
}

/* ==========================================================================
   END: SCROLL PROGRESS INDICATOR
   ========================================================================== */

/* ==========================================================================
   HOME PAGE - MOREROOM STONE NIGERIA
   ========================================================================== */

/* ==========================================================================
   START: SECTION HEADER STYLES
   ========================================================================== */
.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.section-tag::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: left var(--transition-slow);
}

.section-tag:hover::before {
    left: 100%;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ==========================================================================
   END: SECTION HEADER STYLES
   ========================================================================== */

/* ==========================================================================
   START: BUTTON STYLES
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   END: BUTTON STYLES
   ========================================================================== */

/* ==========================================================================
   START: HERO SLIDER STYLES (Single Slide)
   ========================================================================== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--white);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slide {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scaleZoom 20s ease-out forwards;
}

@keyframes scaleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-text-wrapper {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.slide-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    fill: var(--white);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   END: HERO SLIDER STYLES
   ========================================================================== */

/* ==========================================================================
   START: BLEND SECTION (Perfect Blend)
   ========================================================================== */
.blend-section {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.blend-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.blend-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.blend-content {
    padding-right: 2rem;
}

.blend-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.blend-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.blend-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.blend-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 16px;
    transition: all var(--transition-fast);
}

.blend-feature:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.blend-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.blend-feature p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.blend-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.blend-img,
.mission-img,
.excellence-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.image-container:hover .blend-img,
.image-container:hover .mission-img,
.image-container:hover .excellence-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214,40,40,0.1), rgba(42,157,143,0.1));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.floating-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   END: BLEND SECTION
   ========================================================================== */

/* ==========================================================================
   START: MISSION SECTION
   ========================================================================== */
.mission-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-content {
    padding-left: 2rem;
}

.mission-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-medium);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-caption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    backdrop-filter: blur(5px);
}

/* ==========================================================================
   END: MISSION SECTION
   ========================================================================== */

/* ==========================================================================
   START: RANGE SECTION
   ========================================================================== */
.range-section {
    padding: 3rem 0;
    background: var(--white);
}

.range-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.range-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.range-card:hover {
    transform: translateY(-10px);
}

.range-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.range-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.range-card:hover .range-image {
    transform: scale(1.1);
}

.range-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: var(--white);
    transform: translateY(0);
    transition: transform var(--transition-fast);
}

.range-card:hover .range-overlay {
    transform: translateY(-10px);
}

.range-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.range-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.range-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==========================================================================
   END: RANGE SECTION
   ========================================================================== */

/* ==========================================================================
   START: EXCELLENCE SECTION
   ========================================================================== */
.excellence-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
}

.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.excellence-content {
    padding-right: 2rem;
}

.excellence-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.excellence-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.excellence-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.excellence-image {
    position: relative;
}

.image-floating-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ==========================================================================
   END: EXCELLENCE SECTION
   ========================================================================== */

/* ==========================================================================
   START: FEATURES SECTION
   ========================================================================== */
.features-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2634 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
    pointer-events: none;
}

.features-section .section-title {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* ==========================================================================
   END: FEATURES SECTION
   ========================================================================== */

/* ==========================================================================
   START: CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 3rem 0;
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   END: CTA SECTION
   ========================================================================== */

/* ==========================================================================
   START: ANIMATION CLASSES
   ========================================================================== */
.animate-fade-up-bounce {
    animation: fadeInUpBounce 0.8s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease forwards;
    opacity: 0;
}

.animate-float {
    animation: float 3s infinite ease-in-out;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.hover-pulse:hover {
    animation: pulse 1s ease-in-out;
}

.hover-float:hover {
    animation: float 2s infinite ease-in-out;
}

.hover-glow:hover {
    box-shadow: 0 0 20px var(--primary-color);
    transition: box-shadow var(--transition-fast);
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: transform var(--transition-fast);
}

@keyframes fadeInUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==========================================================================
   END: ANIMATION CLASSES
   ========================================================================== */

/* ==========================================================================
   START: RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1200px) {
    .range-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .blend-grid,
    .mission-grid,
    .excellence-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .blend-content,
    .mission-content,
    .excellence-content {
        padding: 0;
        text-align: center;
    }
    
    .blend-features {
        align-items: center;
    }
    
    .blend-feature {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-slider {
        min-height: 100vh !important;
    }
    
    .slider-container {
        height: 80vh;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .blend-section,
    .mission-section,
    .range-section,
    .excellence-section,
    .features-section,
    .cta-section {
        padding: 2rem 0;
    }
    
    .range-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .range-image-wrapper {
        height: 280px;
    }
    
    .mission-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .floating-badge {
        bottom: 1rem;
        right: 0;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .image-floating-text {
        left: 1rem;
        right: 1rem;
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .blend-title,
    .mission-title,
    .excellence-title {
        font-size: 1.6rem;
    }
    
    .blend-text,
    .mission-text,
    .excellence-text {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .range-image-wrapper {
        height: 250px;
    }
}
/* ==========================================================================
   END: RESPONSIVE STYLES
   ========================================================================== */


/* ==========================================================================
   ABOUT PAGE - MOREROOM STONE NIGERIA
   ========================================================================== */

/* ==========================================================================
   START: BUTTON STYLES
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   END: BUTTON STYLES
   ========================================================================== */

/* ==========================================================================
   START: PAGE HERO STYLES
   ========================================================================== */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scaleZoom 20s ease-out forwards;
}

@keyframes scaleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-hero-text {
    max-width: 800px;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
}

.page-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.page-hero-wave svg {
    width: 100%;
    height: auto;
    fill: var(--white);
}

/* ==========================================================================
   END: PAGE HERO STYLES
   ========================================================================== */

/* ==========================================================================
   START: OVERVIEW SECTION
   ========================================================================== */
.overview-section {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
}

.overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content {
    padding-right: 2rem;
}

.overview-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.overview-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.overview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gray-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.feature-badge:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-2px);
}

.badge-icon {
    color: var(--primary-color);
}

.feature-badge:hover .badge-icon {
    color: var(--white);
}

.overview-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.overview-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.image-container:hover .overview-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214,40,40,0.1), rgba(42,157,143,0.1));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   END: OVERVIEW SECTION
   ========================================================================== */

/* ==========================================================================
   START: VISION & MISSION SECTION
   ========================================================================== */

/* Section Container */
.vision-mission-section {
  position: relative;
  padding: 100px 0;
  background: #f8fafc;
}

.vision-mission-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Grid Layout */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/*  Vision Card  */
.vision-card {
  position: relative;
  padding: 48px 40px;
  background: url('../images/vision.jpeg') center/cover no-repeat;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mission Card */
.mission-card {
  position: relative;
  padding: 48px 40px;
  background: url('../images/mission.jpeg') center/cover no-repeat;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Premium Overlay */
.vision-card::before,
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.85);
  z-index: -1;
  transition: background 0.3s ease;
}

.vision-card:hover::before,
.mission-card:hover::before {
  background: rgba(15, 23, 42, 0.92);
}

/* Card Icon */
.card-icon {
  margin-bottom: 28px;
  display: inline-block;
}

.card-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--primary-color);
  stroke-width: 1.5;
  transition: transform 0.3s ease;
}

.vision-card:hover .card-icon svg,
.mission-card:hover .card-icon svg {
  transform: scale(1.05);
}

/* Card Title */
.card-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* Card Text */
.card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

/* Mission List */
.mission-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.mission-list li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-list li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Animation Classes */
.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.2s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 992px) {
  .vision-mission-section {
    padding: 80px 0;
  }
  
  .vision-mission-grid {
    gap: 30px;
  }
  
  .vision-card,
  .mission-card {
    padding: 40px 32px;
  }
  
  .card-title {
    font-size: 1.6rem;
  }
  
  .card-text {
    font-size: 0.95rem;
  }
  
  .mission-list li {
    font-size: 0.9rem;
  }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 60px 0;
  }
  
  .vision-mission-section .container {
    padding: 0 20px;
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .vision-card,
  .mission-card {
    padding: 36px 28px;
  }
  
  .card-icon svg {
    width: 48px;
    height: 48px;
  }
  
  .card-title {
    font-size: 1.5rem;
  }
  
  .card-title::after {
    width: 40px;
    height: 2px;
    bottom: -8px;
  }
  
  .card-text {
    font-size: 0.95rem;
  }
  
  .mission-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
  .vision-mission-section {
    padding: 48px 0;
  }
  
  .vision-mission-section .container {
    padding: 0 16px;
  }
  
  .vision-mission-grid {
    gap: 24px;
  }
  
  .vision-card,
  .mission-card {
    padding: 28px 24px;
  }
  
  .card-icon {
    margin-bottom: 20px;
  }
  
  .card-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .card-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  
  .card-title::after {
    width: 35px;
    bottom: -6px;
  }
  
  .card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .mission-list {
    margin-top: 20px;
  }
  
  .mission-list li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    gap: 8px;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .vision-card,
  .mission-card {
    padding: 24px 20px;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .card-text {
    font-size: 0.85rem;
  }
  
  .mission-list li {
    font-size: 0.8rem;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.vision-card.animated,
.mission-card.animated {
  animation: scaleIn 0.6s ease forwards;
}

/* Optional: Scroll reveal animation with Intersection Observer */
.vision-card,
.mission-card {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vision-card.revealed,
.mission-card.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   END: VISION & MISSION SECTION
   ========================================================================== */

/* ==========================================================================
   START: CORE VALUES SECTION
   ========================================================================== */

/* Section Container */
.values-section {
  position: relative;
  padding: 100px 0;
  background: url('../images/the-perfect-blend.jpeg') center/cover no-repeat fixed;
  z-index: 1;
  overflow: hidden;
}

/* Primary Dark Overlay with Gradient */
.values-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

/* Secondary Radial Gradient for Depth */
.values-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* Container - Content Above Overlay */
.values-section .container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.values-section .section-header.text-center {
  text-align: center;
  margin-bottom: 60px;
}

.values-section .section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
  position: relative;
  padding: 0 20px;
}

.values-section .section-tag::before,
.values-section .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary-color);
}

.values-section .section-tag::before {
  left: -30px;
}

.values-section .section-tag::after {
  right: -30px;
}

.values-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.5px;
}

.values-section .text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-section .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}

/* Value Card - Base Styles */
.value-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Card Glow Effect */
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

/* Hover Effects */
.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
  transform: translateX(100%);
}

/* ========== CLICK EFFECTS ========== */

/* Click Ripple Effect */
.value-card {
  position: relative;
  overflow: hidden;
}

.value-card .ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 70%);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
  z-index: 10;
}

@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Click Flash Effect */
.value-card.flash {
  animation: card-flash 0.3s ease-out;
}

@keyframes card-flash {
  0% {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--primary-color);
  }
  100% {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

/* Click Pulse Effect on Icon */
.value-card.clicked .value-icon-wrapper {
  animation: icon-pulse 0.5s ease-out;
}

@keyframes icon-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Click Scale Effect */
.value-card.click-effect {
  animation: card-scale 0.3s ease-out;
}

@keyframes card-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}

/* Icon Wrapper */
.value-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.value-card:hover .value-icon-wrapper {
  transform: scale(1.05);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.value-icon {
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

/* Value Title */
.value-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  transition: color 0.3s ease;
}

.value-card:hover .value-title {
  color: var(--primary-color);
}

/* Value Text */
.value-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

/* Animation Classes */
.animate-float {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-float.animated {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.2s;
}

.stagger-2 {
  transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 992px) {
  .values-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  
  .values-section .section-title {
    font-size: 2.3rem;
  }
  
  .values-section .section-subtitle {
    font-size: 1rem;
  }
  
  .values-grid {
    gap: 30px;
  }
  
  .value-card {
    padding: 40px 28px;
  }
  
  .value-icon-wrapper {
    width: 85px;
    height: 85px;
  }
  
  .value-icon {
    font-size: 2.5rem;
  }
  
  .value-title {
    font-size: 1.6rem;
  }
  
  .value-text {
    font-size: 0.9rem;
  }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
  .values-section {
    padding: 60px 0;
  }
  
  .values-section .container {
    padding: 0 20px;
  }
  
  .values-section .section-header.text-center {
    margin-bottom: 40px;
  }
  
  .values-section .section-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  
  .values-section .section-tag::before,
  .values-section .section-tag::after {
    width: 20px;
  }
  
  .values-section .section-tag::before {
    left: -25px;
  }
  
  .values-section .section-tag::after {
    right: -25px;
  }
  
  .values-section .section-title {
    font-size: 1.8rem;
  }
  
  .values-section .section-subtitle {
    font-size: 0.95rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .value-card {
    padding: 32px 24px;
  }
  
  .value-icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }
  
  .value-icon {
    font-size: 2.2rem;
  }
  
  .value-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  
  .value-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
  .values-section {
    padding: 48px 0;
  }
  
  .values-section .container {
    padding: 0 16px;
  }
  
  .values-section .section-tag {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }
  
  .values-section .section-title {
    font-size: 1.5rem;
  }
  
  .values-section .section-subtitle {
    font-size: 0.9rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .value-card {
    padding: 32px 28px;
  }
  
  .value-icon-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .value-icon {
    font-size: 2.5rem;
  }
  
  .value-title {
    font-size: 1.5rem;
  }
  
  .value-text {
    font-size: 0.9rem;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .value-card {
    padding: 28px 20px;
  }
  
  .value-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .value-icon {
    font-size: 2rem;
  }
  
  .value-title {
    font-size: 1.3rem;
  }
  
  .value-text {
    font-size: 0.85rem;
  }
}

/* ============================================
   ALTERNATIVE BACKGROUND VARIATIONS
   ============================================ */

/* Darker Overlay */
.values-section.darker::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.85) 100%);
}

/* Gold Tint Overlay */
.values-section.gold-tint::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(212, 175, 55, 0.25) 100%);
}

/* Pattern Overlay */
.values-section.pattern::before {
  background: rgba(0, 0, 0, 0.85);
}

.values-section.pattern::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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='%23d4af37' fill-opacity='0.05'%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");
  background-repeat: repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   END: CORE VALUES SECTION
   ========================================================================== */

/* ==========================================================================
   START: STATS SECTION
   ========================================================================== */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a2634 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><path d="M0 0 L100 100 M100 0 L0 100" stroke="white" stroke-width="1"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 1rem;
    transition: all var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   END: STATS SECTION
   ========================================================================== */

/* ==========================================================================
   START: CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 3rem 0;
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   END: CTA SECTION
   ========================================================================== */

/* ==========================================================================
   START: ANIMATION CLASSES
   ========================================================================== */
.animate-fade-up-bounce {
    animation: fadeInUpBounce 0.8s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
}

.animate-scale {
    animation: zoomIn 0.6s ease forwards;
    opacity: 0;
}

.animate-float {
    animation: float 3s infinite ease-in-out;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.hover-glow:hover {
    box-shadow: 0 0 20px var(--primary-color);
    transition: box-shadow var(--transition-fast);
}

.hover-float:hover {
    animation: float 2s infinite ease-in-out;
}

@keyframes fadeInUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   END: ANIMATION CLASSES
   ========================================================================== */

/* ==========================================================================
   START: RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .overview-grid,
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .overview-content {
        padding-right: 0;
        text-align: center;
    }
    
    .overview-features {
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .page-hero {
        min-height: 70vh;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .overview-section,
    .vision-mission-section,
    .values-section,
    .stats-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vision-card,
    .mission-card {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        /* grid-template-columns: 1fr; */
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .overview-title {
        font-size: 1.6rem;
    }
    
    .overview-text {
        font-size: 1rem;
    }
    
    .feature-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .floating-card {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        bottom: 1rem;
        right: -0.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
}
/* ==========================================================================
   END: RESPONSIVE STYLES
   ========================================================================== */


/* ==========================================================================
   CONTACT PAGE - MOREROOM STONE NIGERIA
   ========================================================================== */

/* ==========================================================================
   START: SHOWROOM SECTION
   ========================================================================== */

/* Section Container */
.showroom-section {
  position: relative;
  padding: 100px 0;
  background: url('../images/exterior.jpg') center/cover no-repeat fixed;
  z-index: 1;
  overflow: hidden;
}

/* Primary Dark Overlay */
.showroom-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
}

/* Secondary Gradient Overlay for Depth */
.showroom-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* Container - Content Above Overlay */
.showroom-section .container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header.text-center {
  text-align: center;
  margin-bottom: 60px;
}

/* .section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-weight: 500;
  position: relative;
  padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--primary-color);
}

.section-tag::before {
  left: -30px;
}

.section-tag::after {
  right: -30px;
} */

/* .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.5px;
} */

.values-section .section-title{
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.5px;
}

/* .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
} */

/* Showroom Grid */
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Main Showroom Card */
.showroom-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 48px 40px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Card Glow Effect */
.showroom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.showroom-card:hover::before {
  transform: translateX(100%);
}

.showroom-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Quick Contact Card */
.quick-contact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 48px 40px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.quick-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.quick-contact-card:hover::before {
  transform: translateX(100%);
}

.quick-contact-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card Icon */
.card-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.showroom-card:hover .card-icon-large {
  transform: scale(1.05);
}

.card-icon-large svg {
  width: 48px;
  height: 48px;
  fill: var(--primary-color);
  stroke: none;
}

/* Showroom Title */
.showroom-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: 'Playfair Display', Georgia, serif;
}

/* Address */
.showroom-address {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* Divider */
.showroom-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  margin: 24px auto;
}

/* Contact Details */
.showroom-contact {
  margin-bottom: 24px;
}

.contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.phone-icon {
  font-size: 1.2rem;
}

.contact-phone div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-phone a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-phone a:hover {
  color: var(--primary-color);
}

/* Hours */
.showroom-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  border-radius: 50px;
  margin-top: 24px;
}

.hours-icon {
  font-size: 1rem;
}

/* Quick Contact Card Styles */
.quick-contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.quick-contact-card:hover .quick-contact-icon {
  transform: scale(1.05);
}

.quick-contact-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
}

.quick-contact-card > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

/* Quick Contact Details */
.quick-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.quick-phone,
.quick-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.quick-phone:hover,
.quick-email:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary-color);
  transform: translateX(5px);
}

.quick-phone span,
.quick-email span {
  font-size: 1.1rem;
}

/* Quick Button */
.quick-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #b88d2c 100%);
  color: #0a0a0a;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.quick-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #e5c45c 0%, var(--primary-color) 100%);
}

/* Animation Classes */
.animate-zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-zoom-in.animated {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.2s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 992px) {
  .showroom-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  
  .section-title {
    font-size: 2.3rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .showroom-grid {
    gap: 30px;
    max-width: 800px;
  }
  
  .showroom-card,
  .quick-contact-card {
    padding: 40px 32px;
  }
  
  .showroom-title {
    font-size: 1.6rem;
  }
  
  .quick-contact-card h3 {
    font-size: 1.4rem;
  }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
  .showroom-section {
    padding: 60px 0;
  }
  
  .showroom-section .container {
    padding: 0 20px;
  }
  
  .section-header.text-center {
    margin-bottom: 40px;
  }
  
  .section-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  
  .section-tag::before,
  .section-tag::after {
    width: 20px;
  }
  
  .section-tag::before {
    left: -25px;
  }
  
  .section-tag::after {
    right: -25px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .showroom-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .showroom-card,
  .quick-contact-card {
    padding: 36px 28px;
  }
  
  .card-icon-large {
    width: 70px;
    height: 70px;
  }
  
  .card-icon-large svg {
    width: 40px;
    height: 40px;
  }
  
  .showroom-title {
    font-size: 1.5rem;
  }
  
  .showroom-address {
    font-size: 0.95rem;
  }
  
  .contact-phone a {
    font-size: 0.95rem;
  }
  
  .showroom-hours {
    font-size: 0.8rem;
    flex-wrap: wrap;
    text-align: center;
  }
  
  .quick-contact-card h3 {
    font-size: 1.3rem;
  }
  
  .quick-phone,
  .quick-email {
    font-size: 0.9rem;
  }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
  .showroom-section {
    padding: 48px 0;
  }
  
  .showroom-section .container {
    padding: 0 16px;
  }
  
  .section-tag {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .showroom-card,
  .quick-contact-card {
    padding: 28px 20px;
  }
  
  .card-icon-large {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  
  .card-icon-large svg {
    width: 32px;
    height: 32px;
  }
  
  .showroom-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  
  .showroom-address {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .showroom-divider {
    margin: 20px auto;
  }
  
  .contact-phone {
    flex-direction: column;
    gap: 8px;
  }
  
  .contact-phone div {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .contact-phone a {
    font-size: 0.9rem;
  }
  
  .showroom-hours {
    font-size: 0.75rem;
    padding: 10px 12px;
    flex-direction: column;
    gap: 8px;
  }
  
  .quick-contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .quick-contact-card h3 {
    font-size: 1.2rem;
  }
  
  .quick-contact-card > p {
    font-size: 0.85rem;
  }
  
  .quick-contact-details {
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .quick-phone,
  .quick-email {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
  
  .quick-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .showroom-card,
  .quick-contact-card {
    padding: 24px 16px;
  }
  
  .showroom-title {
    font-size: 1.2rem;
  }
  
  .showroom-address {
    font-size: 0.85rem;
  }
  
  .contact-phone a {
    font-size: 0.85rem;
  }
  
  .quick-contact-card h3 {
    font-size: 1.1rem;
  }
  
  .quick-phone,
  .quick-email {
    font-size: 0.8rem;
  }
}

/* ============================================
   ALTERNATIVE BACKGROUND VARIATIONS
   ============================================ */

/* Darker Overlay */
.showroom-section.darker::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.88) 100%);
}

/* Gold Accent Overlay */
.showroom-section.gold-overlay::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(212, 175, 55, 0.2) 100%);
}

/* Pattern Overlay */
.showroom-section.pattern::before {
  background: rgba(0, 0, 0, 0.85);
}

.showroom-section.pattern::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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='%23d4af37' fill-opacity='0.05'%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");
  background-repeat: repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   END: SHOWROOM SECTION
   ========================================================================== */

/* ==========================================================================
   START: CONTACT FORM SECTION
   ========================================================================== */
.contact-form-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-medium);
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group.half {
    width: 50%;
}

.form-group.full {
    width: 100%;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.required {
    color: var(--primary-color);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-size: 1rem;
    transition: all var(--transition-fast);
    font-family: inherit;
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(214,40,40,0.1);
}

.input-focus-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.form-input:focus ~ .input-focus-effect,
.form-textarea:focus ~ .input-focus-effect {
    width: 100%;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-medium);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(214,40,40,0.3);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ==========================================================================
   END: CONTACT FORM SECTION
   ========================================================================== */

/* ==========================================================================
   START: MAP SECTION
   ========================================================================== */
.map-section {
    padding: 3rem 0;
    background: var(--white);
}

.map-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-iframe {
    display: block;
    width: 100%;
    height: 450px;
    filter: grayscale(20%) contrast(90%);
    transition: filter var(--transition-medium);
}

.map-container:hover .map-iframe {
    filter: grayscale(0%) contrast(100%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214,40,40,0.05), rgba(42,157,143,0.05));
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.map-container:hover .map-overlay {
    opacity: 1;
}

/* ==========================================================================
   END: MAP SECTION
   ========================================================================== */

/* ==========================================================================
   START: ANIMATION CLASSES
   ========================================================================== */
.animate-fade-up-bounce {
    animation: fadeInUpBounce 0.8s ease forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease forwards;
    opacity: 0;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

@keyframes fadeInUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   END: ANIMATION CLASSES
   ========================================================================== */

/* ==========================================================================
   START: RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .showroom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {   
    .showroom-section,
    .contact-form-section,
    .map-section {
        padding: 2rem 0;
    }
    
    .showroom-card {
        padding: 2rem;
    }
    
    .showroom-title {
        font-size: 1.5rem;
    }
    
    .showroom-address {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .map-iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .showroom-card {
        padding: 1.5rem;
    }
    
    .card-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .card-icon-large svg {
        width: 30px;
        height: 30px;
    }
    
    .contact-phone a {
        font-size: 1rem;
    }
    
    .quick-contact-card {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .map-iframe {
        height: 280px;
    }
}
/* ==========================================================================
   END: RESPONSIVE STYLES
   ========================================================================== */

/* ==========================================================================
   COLLECTIONS PAGE - MOREROOM STONE NIGERIA
   ========================================================================== */

/* ==========================================================================
   START: BUTTON STYLES
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   END: BUTTON STYLES
   ========================================================================== */

/* ==========================================================================
   START: ABOUT SINTERED STONE SECTION
   ========================================================================== */
.about-sintered-section {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
}

.about-sintered-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-sintered-content {
    padding-right: 2rem;
}

.about-sintered-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-sintered-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.sintered-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1rem;
}

.sintered-stat {
    text-align: center;
    flex: 1;
}

.sintered-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.sintered-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-sintered-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-medium);
}

.image-container:hover .about-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214,40,40,0.1), rgba(42,157,143,0.1));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.floating-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==========================================================================
   END: ABOUT SINTERED STONE SECTION
   ========================================================================== */

/* ==========================================================================
   START: WHY CHOOSE SECTION
   ========================================================================== */

   /* ============================================
   WHY CHOOSE SECTION WITH BACKGROUND & OVERLAY
   ============================================ */

/* Section Container */
.why-choose-section {
  position: relative;
  padding: 100px 0;
  background: url('../images/home-slider-2.jpeg') center/cover no-repeat fixed;
  z-index: 1;
  overflow: hidden;
}

/* Primary Dark Overlay with Gradient */
.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
}

/* Secondary Radial Gradient for Depth */
.why-choose-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

/* Container - Content Above Overlay */
.why-choose-section .container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.why-choose-section .section-header.text-center {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-section .section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
  position: relative;
  padding: 0 20px;
}

.why-choose-section .section-tag::before,
.why-choose-section .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #ffffff;
}

.why-choose-section .section-tag::before {
  left: -30px;
}

.why-choose-section .section-tag::after {
  right: -30px;
}

.why-choose-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.5px;
}

.why-choose-section .text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-section .section-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin: 0 auto;
}

/* Why Choose Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

/* Why Card Styles */
.why-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Card Glow Effect */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-card:hover::before {
  transform: translateX(100%);
}

/* Click Effects */
.why-card .ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0) 70%);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
  z-index: 10;
}

.why-card.flash {
  animation: card-flash 0.3s ease-out;
}

.why-card.clicked .why-icon {
  animation: icon-pulse 0.5s ease-out;
}

@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes card-flash {
  0% {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--primary-color);
  }
  100% {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

@keyframes icon-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Icon Styles */
.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

/* Card Title */
.why-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  transition: color 0.3s ease;
}

.why-card:hover h3 {
  color: var(--primary-color);
}

/* Card Paragraph */
.why-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* Animation Classes */
.animate-zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-zoom-in.animated {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Last Paragraph Section */
.why-choose-section .section-header:last-child {
  margin-top: 40px;
  margin-bottom: 0;
}

.why-choose-section .section-header:last-child .section-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 992px) {
  .why-choose-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  
  .why-choose-section .section-title {
    font-size: 2.3rem;
  }
  
  .why-choose-section .section-subtitle {
    font-size: 0.95rem;
  }
  
  .why-choose-grid {
    gap: 25px;
    margin: 40px 0;
  }
  
  .why-card {
    padding: 28px 20px;
  }
  
  .why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .why-card h3 {
    font-size: 1.2rem;
  }
  
  .why-card p {
    font-size: 0.85rem;
  }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }
  
  .why-choose-section .container {
    padding: 0 20px;
  }
  
  .why-choose-section .section-header.text-center {
    margin-bottom: 40px;
  }
  
  .why-choose-section .section-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  
  .why-choose-section .section-tag::before,
  .why-choose-section .section-tag::after {
    width: 20px;
  }
  
  .why-choose-section .section-tag::before {
    left: -25px;
  }
  
  .why-choose-section .section-tag::after {
    right: -25px;
  }
  
  .why-choose-section .section-title {
    font-size: 1.8rem;
  }
  
  .why-choose-section .section-subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
  }
  
  .why-card {
    padding: 24px 18px;
  }
  
  .why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }
  
  .why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .why-card p {
    font-size: 0.85rem;
  }
  
  .why-choose-section .section-header:last-child {
    margin-top: 30px;
  }
  
  .why-choose-section .section-header:last-child .section-subtitle {
    font-size: 0.9rem;
    padding: 0;
  }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
  .why-choose-section {
    padding: 48px 0;
  }
  
  .why-choose-section .container {
    padding: 0 16px;
  }
  
  .why-choose-section .section-tag {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }
  
  .why-choose-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .why-choose-section .section-subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
  }
  
  .why-card {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .why-card h3 {
    font-size: 1.2rem;
  }
  
  .why-card p {
    font-size: 0.85rem;
    max-width: 280px;
  }
  
  .why-choose-section .section-header:last-child {
    margin-top: 30px;
  }
  
  .why-choose-section .section-header:last-child .section-subtitle {
    font-size: 0.85rem;
    padding: 0;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .why-card {
    padding: 24px 20px;
  }
  
  .why-icon {
    font-size: 2.2rem;
  }
  
  .why-card h3 {
    font-size: 1.1rem;
  }
  
  .why-card p {
    font-size: 0.8rem;
  }
}

/* ============================================
   ALTERNATIVE BACKGROUND VARIATIONS
   ============================================ */

/* Darker Overlay */
.why-choose-section.darker::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.88) 100%);
}

/* Gold Tint Overlay */
.why-choose-section.gold-tint::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(212, 175, 55, 0.25) 100%);
}

/* Pattern Overlay */
.why-choose-section.pattern::before {
  background: rgba(0, 0, 0, 0.85);
}

.why-choose-section.pattern::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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='%23d4af37' fill-opacity='0.05'%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");
  background-repeat: repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   END: WHY CHOOSE SECTION
   ========================================================================== */

/* ==========================================================================
   START: APPLICATIONS SECTION
   ========================================================================== */

   /* ============================================
   APPLICATIONS SECTION - UNIQUE DESIGN
   ============================================ */

/* Section Container */
.applications-section {
  position: relative;
  padding: 100px 0;
  background: url('../images/home-slider-3.jpeg') center/cover no-repeat fixed;
  z-index: 1;
  overflow: hidden;
}

/* Animated Gradient Overlay */
.applications-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.85) 0%,
    rgba(30, 20, 10, 0.8) 50%,
    rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Animated Pattern Overlay */
.applications-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      rgba(212, 175, 55, 0.03) 0px,
      rgba(212, 175, 55, 0.03) 2px,
      transparent 2px,
      transparent 8px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(212, 175, 55, 0.03) 0px,
      rgba(212, 175, 55, 0.03) 2px,
      transparent 2px,
      transparent 8px
    );
  z-index: 1;
  pointer-events: none;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/* Container - Content Above Overlay */
.applications-section .container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.applications-section .section-header.text-center {
  text-align: center;
  margin-bottom: 60px;
}

.applications-section .section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
  position: relative;
  padding: 0 20px;
  animation: fadeInUp 0.6s ease;
}

.applications-section .section-tag::before,
.applications-section .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.applications-section .section-tag::before {
  left: -30px;
}

.applications-section .section-tag::after {
  right: -30px;
}

.applications-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.applications-section .text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.applications-section .section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* Applications Grid - Unique Masonry Style */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 20px;
}

/* Application Card - Unique Design */
.app-card {
  background: rgba(10, 20, 30, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Unique Card Glow Effect */
.app-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  transform: rotate(0deg);
  pointer-events: none;
}

.app-card:hover::before {
  opacity: 1;
}

/* Corner Accents */
.app-card::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  border-top: 2px solid rgba(212, 175, 55, 0.5);
  border-right: 2px solid rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
  opacity: 0;
}

.app-card:hover::after {
  opacity: 1;
  width: 25px;
  height: 25px;
}

/* Bottom Left Corner Accent */
.app-card .corner-accent {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.5);
  border-left: 2px solid rgba(212, 175, 55, 0.5);
  transition: all 0.3s ease;
  opacity: 0;
}

.app-card:hover .corner-accent {
  opacity: 1;
  width: 25px;
  height: 25px;
}

/* Icon Container with Unique Animation */
.app-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.app-card:hover .app-icon {
  transform: scale(1.2) rotate(0deg);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* Card Title */
.app-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.app-card:hover h3 {
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Hover Effects */
.app-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(10, 20, 30, 0.8);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Click Effects */
.app-card .ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0) 70%);
  transform: scale(0);
  animation: ripple-gold 0.8s ease-out;
  pointer-events: none;
  z-index: 10;
}

.app-card.flash {
  animation: card-flash-gold 0.4s ease-out;
}

.app-card.clicked .app-icon {
  animation: icon-bounce 0.5s ease-out;
}

@keyframes ripple-gold {
  0% {
    transform: scale(0);
    opacity: 0.8;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}

@keyframes card-flash-gold {
  0% {
    background: rgba(212, 175, 55, 0.4);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  }
  100% {
    background: rgba(10, 20, 30, 0.6);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: none;
  }
}

@keyframes icon-bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-zoom-in.animated {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }

/* Floating Animation for Cards */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.app-card.animated {
  animation: float 3s ease-in-out infinite;
}

.app-card.animated:hover {
  animation: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 992px) {
  .applications-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  
  .applications-section .section-title {
    font-size: 2.3rem;
  }
  
  .applications-section .section-subtitle {
    font-size: 1rem;
  }
  
  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .app-card {
    padding: 28px 16px;
  }
  
  .app-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .app-card h3 {
    font-size: 1rem;
  }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
  .applications-section {
    padding: 60px 0;
  }
  
  .applications-section .container {
    padding: 0 20px;
  }
  
  .applications-section .section-header.text-center {
    margin-bottom: 40px;
  }
  
  .applications-section .section-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  
  .applications-section .section-tag::before,
  .applications-section .section-tag::after {
    width: 20px;
  }
  
  .applications-section .section-tag::before {
    left: -25px;
  }
  
  .applications-section .section-tag::after {
    right: -25px;
  }
  
  .applications-section .section-title {
    font-size: 1.8rem;
  }
  
  .applications-section .section-subtitle {
    font-size: 0.95rem;
  }
  
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .app-card {
    padding: 24px 16px;
  }
  
  .app-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .app-card h3 {
    font-size: 0.9rem;
  }
}

/* Mobile Portrait (up to 576px) */
@media (max-width: 576px) {
  .applications-section {
    padding: 48px 0;
  }
  
  .applications-section .container {
    padding: 0 16px;
  }
  
  .applications-section .section-tag {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }
  
  .applications-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .applications-section .section-subtitle {
    font-size: 0.9rem;
  }
  
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .app-card {
    padding: 20px 12px;
  }
  
  .app-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .app-card h3 {
    font-size: 0.85rem;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .applications-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .app-card {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .app-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .app-card h3 {
    font-size: 1rem;
  }
}

/* ============================================
   ALTERNATIVE BACKGROUND STYLES
   ============================================ */

/* Dark Metal Gradient */
.applications-section.metal::before {
  background: linear-gradient(135deg, 
    rgba(20, 20, 30, 0.9) 0%,
    rgba(40, 35, 25, 0.85) 50%,
    rgba(20, 20, 30, 0.9) 100%);
}

/* Aurora Effect */
.applications-section.aurora::before {
  background: linear-gradient(135deg, 
    rgba(0, 40, 60, 0.85) 0%,
    rgba(212, 175, 55, 0.2) 50%,
    rgba(0, 40, 60, 0.85) 100%);
  animation: auroraShift 10s ease infinite;
}

@keyframes auroraShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ==========================================================================
   END: APPLICATIONS SECTION
   ========================================================================== */

/* ==========================================================================
   START: SUPPORT SECTION
   ========================================================================== */
.support-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.support-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-medium);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.support-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.support-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   END: SUPPORT SECTION
   ========================================================================== */

/* ==========================================================================
   START: SERIES SECTION
   ========================================================================== */
.series-section {
    padding: 3rem 0;
    background: var(--white);
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.series-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.series-card:hover {
    transform: translateY(-5px);
    background: var(--gradient-1);
    color: var(--white);
}

/* ==========================================================================
   END: SERIES SECTION
   ========================================================================== */

/* ==========================================================================
   START: POPULAR SECTION
   ========================================================================== */
.popular-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.popular-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.popular-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.popular-image {
    height: 200px;
    overflow: hidden;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.popular-card:hover .popular-image img {
    transform: scale(1.1);
}

.popular-content {
    padding: 1rem;
    text-align: center;
}

.popular-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.popular-finishes {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.finish {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: var(--gray-light);
    border-radius: 20px;
    color: var(--text-light);
}

/* ==========================================================================
   END: POPULAR SECTION
   ========================================================================== */

/* ==========================================================================
   START: CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 3rem 0;
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   END: CTA SECTION
   ========================================================================== */

/* ==========================================================================
   START: ANIMATION CLASSES
   ========================================================================== */
.animate-fade-up-bounce {
    animation: fadeInUpBounce 0.8s ease forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease forwards;
    opacity: 0;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }

.hover-glow:hover {
    box-shadow: 0 0 20px var(--primary-color);
    transition: box-shadow var(--transition-fast);
}

.hover-float:hover {
    animation: float 2s infinite ease-in-out;
}

@keyframes fadeInUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   END: ANIMATION CLASSES
   ========================================================================== */

/* ==========================================================================
   START: RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1200px) {
    .popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-sintered-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-sintered-content {
        padding-right: 0;
        text-align: center;
    }
    
    .sintered-stats {
        justify-content: center;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .series-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-sintered-section,
    .why-choose-section,
    .applications-section,
    .series-section,
    .popular-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .series-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popular-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-sintered-title {
        font-size: 1.6rem;
    }
    
    .sintered-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .series-grid {
        grid-template-columns: 1fr;
    }
    
    .support-card {
        padding: 1.5rem;
    }
}
/* ==========================================================================
   END: RESPONSIVE STYLES
   ========================================================================== */

/* ==========================================================================
   GALLERY PAGE - MOREROOM STONE NIGERIA
   ========================================================================== */

/* ==========================================================================
   START: GALLERY FILTER SECTION
   ========================================================================== */
.gallery-filter-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gray-medium);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.filter-stats {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gallery-count {
    padding: 0.5rem 1rem;
    background: var(--gray-light);
    border-radius: 50px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.gallery-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

/* Gallery Overlay Content */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.overlay-content {
    color: var(--white);
}

.gallery-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-description {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.gallery-link:hover {
    gap: 0.8rem;
    color: var(--primary-color);
}

/* Load More Button */
.gallery-load-more {
    text-align: center;
}

.gallery-load-more-btn {
    padding: 0.8rem 2.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.gallery-load-more-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================================================
   END: GALLERY FILTER SECTION
   ========================================================================== */

/* ==========================================================================
   START: LIGHTBOX MODAL
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.lightbox.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
}

.lightbox-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.lightbox-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.lightbox-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gradient-1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* ==========================================================================
   END: LIGHTBOX MODAL
   ========================================================================== */

/* ==========================================================================
   START: ANIMATION CLASSES
   ========================================================================== */
.animate-fade-up-bounce {
    animation: fadeInUpBounce 0.8s ease forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease forwards;
    opacity: 0;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

@keyframes fadeInUpBounce {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   END: ANIMATION CLASSES
   ========================================================================== */

/* ==========================================================================
   START: RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .lightbox-prev {
        left: -50px;
    }
    
    .lightbox-next {
        right: -50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .gallery-filter-section {
        padding: 3rem 0 4rem;
    }
    
    .filter-header {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image-wrapper {
        height: 280px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: -40px;
    }
    
    .lightbox-next {
        right: -40px;
    }
    
    .lightbox-info {
        bottom: -100px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-image-wrapper {
        height: 240px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-title {
        font-size: 1rem;
    }
    
    .gallery-description {
        font-size: 0.75rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: -35px;
    }
    
    .lightbox-next {
        right: -35px;
    }
    
    .lightbox-info {
        bottom: -80px;
    }
    
    .lightbox-title {
        font-size: 1rem;
    }
    
    .lightbox-description {
        font-size: 0.8rem;
    }
}
/* ==========================================================================
   END: RESPONSIVE STYLES
   ========================================================================== */

/* ==========================================================================
   PRODUCTS PAGE - MOREROOM STONE NIGERIA
   ========================================================================== */

/* ==========================================================================
   START: CATALOGUES SECTION
   ========================================================================== */
.catalogues-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
}

.catalogues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.catalogue-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.catalogue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.catalogue-card:hover::before {
    transform: scaleX(1);
}

.catalogue-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.catalogue-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.catalogue-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.catalogue-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.catalogue-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.catalogue-size,
.catalogue-pages {
    padding: 0.25rem 0.75rem;
    background: var(--gray-light);
    border-radius: 20px;
}

.catalogue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.catalogue-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    gap: 0.8rem;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.catalogue-btn:hover .btn-arrow {
    transform: translateY(2px);
}

/* ==========================================================================
   END: CATALOGUES SECTION
   ========================================================================== */

/* ==========================================================================
   START: SERIES CATALOGUES SECTION
   ========================================================================== */
.series-catalogues-section {
    padding: 3rem 0;
    background: var(--white);
}

.series-catalogues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.series-catalogue-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.05);
}

.series-catalogue-card:hover {
    transform: translateY(-5px);
    background: var(--gradient-1);
    color: var(--white);
}

.series-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.series-catalogue-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.series-download {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.series-catalogue-card:hover .series-download {
    color: var(--white);
}

.series-download span {
    transition: transform var(--transition-fast);
}

.series-download:hover span {
    transform: translateY(2px);
}

/* ==========================================================================
   END: SERIES CATALOGUES SECTION
   ========================================================================== */

/* ==========================================================================
   START: CATEGORIES SECTION (Enhanced)
   ========================================================================== */
.categories-section {
    padding: 3rem 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.category-image {
    position: relative;
    height: 280px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 1.5rem;
    color: var(--white);
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.category-description {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.category-link {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.9;
    transition: all var(--transition-fast);
}

.category-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* ==========================================================================
   END: CATEGORIES SECTION
   ========================================================================== */

/* ==========================================================================
   START: CTA SECTION (Kept as requested)
   ========================================================================== */
.cta-section {
    padding: 3rem 0;
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   END: CTA SECTION
   ========================================================================== */

/* ==========================================================================
   START: RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .catalogues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .series-catalogues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .catalogues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .series-catalogues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-section,
    .catalogues-section,
    .series-catalogues-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-image {
        height: 250px;
    }
    
    .catalogues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .series-catalogues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .catalogue-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .catalogue-title {
        font-size: 1.2rem;
    }
    
    .catalogue-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .series-catalogues-grid {
        grid-template-columns: 1fr;
    }
    
    .series-catalogue-card {
        padding: 1rem;
    }
}
/* ==========================================================================
   END: RESPONSIVE STYLES
   ========================================================================== */

/* ALERT */
.success-message {
    display: block;
    background: #e6f9f0;
    border-left: 5px solid #28a745;
    color: #1e7e34;
    padding: 1rem;
}

.error-message {
    display: block;
    background: #fdecea;
    border-left: 5px solid #dc3545;
    color: #a71d2a;
    padding: 1rem
}



/* ==========================================================================
   SERIES SECTION STYLES
   ========================================================================== */

/* Series Filter Section */
.series-filter-section {
    padding: 4rem 0;
    background: var(--white);
}

/* Filter Buttons */
.series-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.series-filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gray-medium);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.series-filter-btn:hover,
.series-filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* Filter Stats */
.series-filter-stats {
    text-align: center;
    margin-bottom: 3rem;
}

.series-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gray-light);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Series Grid */
.series-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.series-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.series-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Series Image Wrapper */
.series-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.series-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.series-item:hover .series-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.series-item:hover .image-overlay {
    opacity: 1;
}

/* Series Overlay */
.series-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
    z-index: 2;
}

.series-item:hover .series-overlay {
    transform: translateY(0);
}

.overlay-content {
    color: var(--white);
}

.series-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.series-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.series-description {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.series-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.series-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.series-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap var(--transition-fast);
}

.series-link:hover {
    gap: 0.8rem;
    color: var(--primary-color);
}

/* Load More Button */
.series-load-more {
    text-align: center;
}

.load-more-btn {
    padding: 0.8rem 2.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.load-more-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================================================
   SERIES LIGHTBOX STYLES
   ========================================================================== */
.series-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.series-lightbox.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.series-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.series-lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.series-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.series-lightbox-close:hover {
    color: var(--primary-color);
}

.series-lightbox-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
}

.series-lightbox-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.series-lightbox-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.series-lightbox-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.series-lightbox-prev,
.series-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.series-lightbox-prev:hover,
.series-lightbox-next:hover {
    background: var(--gradient-1);
    transform: translateY(-50%) scale(1.1);
}

.series-lightbox-prev {
    left: -70px;
}

.series-lightbox-next {
    right: -70px;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1200px) {
    .series-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .series-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .series-filter-buttons {
        gap: 0.5rem;
    }
    
    .series-filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .series-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .series-image-wrapper {
        height: 250px;
    }
    
    .series-overlay {
        padding: 1rem;
    }
    
    .series-title {
        font-size: 1rem;
    }
    
    .series-lightbox-prev,
    .series-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .series-lightbox-prev {
        left: -40px;
    }
    
    .series-lightbox-next {
        right: -40px;
    }
    
    .series-lightbox-info {
        bottom: -80px;
    }
}

@media (max-width: 480px) {
    .series-filter-buttons {
        justify-content: center;
    }
    
    .series-filter-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .series-image-wrapper {
        height: 220px;
    }
    
    .series-lightbox-prev,
    .series-lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .series-lightbox-prev {
        left: -35px;
    }
    
    .series-lightbox-next {
        right: -35px;
    }
    
    .series-lightbox-info {
        bottom: -70px;
    }
    
    .series-lightbox-title {
        font-size: 1rem;
    }
}

/* ==========================================================================
   GET A QUOTE / BOOK CONSULTATION PAGE
   ========================================================================== */

/* ==========================================================================
   START: QUOTE SECTION
   ========================================================================== */
.quote-section {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column - Info */
.quote-info {
    position: sticky;
    top: 100px;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(214,40,40,0.1), rgba(42,157,143,0.1));
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-info-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.quote-info-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--gray-light);
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.info-feature:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(214,40,40,0.05), rgba(42,157,143,0.05));
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.feature-text {
    color: var(--text-dark);
    font-weight: 500;
}

.claimer {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.claimer-text {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

/* Right Column - Form */
.quote-form-container {
    background: var(--white);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-medium);
    border: 1px solid rgba(0,0,0,0.05);
}

.quote-form-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Form Elements */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group.half {
    width: 50%;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.required {
    color: var(--primary-color);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-size: 1rem;
    transition: all var(--transition-fast);
    font-family: inherit;
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(214,40,40,0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.input-focus-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.form-input:focus ~ .input-focus-effect,
.form-select:focus ~ .input-focus-effect,
.form-textarea:focus ~ .input-focus-effect {
    width: 100%;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 28px;
    user-select: none;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.checkbox-label:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-medium);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(214,40,40,0.3);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Alternative Actions */
.alternative-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.book-showroom {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.book-showroom:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.call-us {
    background: var(--gray-light);
    color: var(--text-dark);
}

.call-us:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-2px);
}

.phone-number {
    font-weight: 700;
    text-decoration: underline;
}

/* ==========================================================================
   END: QUOTE SECTION
   ========================================================================== */

/* ==========================================================================
   START: FINANCING SECTION
   ========================================================================== */
.financing-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.financing-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.financing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.financing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.financing-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.financing-terms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.financing-terms span {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background: var(--gray-light);
    border-radius: 50px;
}

/* ==========================================================================
   END: FINANCING SECTION
   ========================================================================== */

/* ==========================================================================
   START: RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quote-info {
        position: static;
        text-align: center;
    }
    
    .info-features {
        align-items: center;
    }
    
    .info-feature {
        width: 100%;
        max-width: 400px;
    }
    
    .claimer {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .quote-section {
        padding: 4rem 0;
    }
    
    .quote-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group.half {
        width: 100%;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .alternative-actions {
        gap: 0.75rem;
    }
    
    .financing-terms {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .quote-info-title {
        font-size: 1.6rem;
    }
    
    .quote-form-container {
        padding: 1.25rem;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .offer-badge {
        margin: 0 auto 1.5rem;
        width: fit-content;
    }
    
    .alt-btn {
        font-size: 0.85rem;
    }
}
/* ==========================================================================
   END: RESPONSIVE STYLES
   ========================================================================== */

   /* Success and Error Messages */
.success-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #28a745;
    animation: slideDown 0.3s ease;
}

.success-icon {
    font-size: 1.5rem;
    color: #28a745;
}

.success-text {
    color: #155724;
    flex: 1;
}

.error-message {
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.error-message-global {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #dc3545;
    animation: slideDown 0.3s ease;
}

.error-icon {
    font-size: 1.5rem;
    color: #dc3545;
}

.error-text {
    color: #721c24;
    flex: 1;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc3545;
    background-color: #fff8f8;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================================
   HERO SLIDER STYLES - ENHANCED
   ========================================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #0a0a0a;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease-out;
}

.slide.active .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide-text-wrapper {
    max-width: 700px;
    animation: fadeInUp 0.8s ease forwards;
}

.slide-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.slide-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    max-width: 550px;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-slide {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-slide:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(214,40,40,0.3);
    gap: 0.8rem;
}

.btn-outline-slide {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-slide:hover {
    background: white;
    color: #d62828;
    border-color: white;
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-slider {
        height: 100vh !important;
        min-height: 600px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow.prev {
        left: 1rem;
    }
    
    .slider-arrow.next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh !important;
        min-height: 500px;
    }
    
    .slide-text-wrapper {
        text-align: center;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .slide-buttons {
        justify-content: center;
    }
    
    .btn-primary-slide,
    .btn-outline-slide {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 100vh !important;
        min-height: 450px;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .slide-subtitle {
        font-size: 0.8rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-slide,
    .btn-outline-slide {
        width: 100%;
        justify-content: center;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 25px;
    }
}

/* ==========================================================================
   GALLERY SECTION WITH LEFT SIDEBAR
   ========================================================================== */

.gallery-filter-section {
    padding: 6rem 0;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-layout {
    display: flex;
    gap: 3rem;
}

/* Left Sidebar - Categories */
.gallery-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.categories-header {
    margin-bottom: 1.5rem;
}

.categories-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.categories-line {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
}

.category-item:hover {
    background: linear-gradient(135deg, rgba(214,40,40,0.05), rgba(42,157,143,0.05));
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.category-item.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
}

.category-icon {
    font-size: 1.2rem;
}

.category-name {
    flex: 1;
    font-weight: 500;
}

.category-count {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    background: rgba(0,0,0,0.05);
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.category-item.active .category-count {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.filter-stats {
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 12px;
    text-align: center;
}

.gallery-count {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Right Main - Gallery Grid */
.gallery-main {
    flex: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    aspect-ratio: 1 / 1;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.category-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.gallery-item:hover .category-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Load More Button */
.gallery-load-more {
    text-align: center;
    margin-top: 2rem;
}

.gallery-load-more-btn {
    padding: 0.8rem 2.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.gallery-load-more-btn:hover {
    background: var(--gradient-1);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gradient-1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gallery-sidebar {
        width: 100%;
        position: static;
    }
    
    .categories-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .category-item {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-filter-section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: -40px;
    }
    
    .lightbox-next {
        right: -40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .category-item {
        min-width: calc(50% - 0.5rem);
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: -35px;
    }
    
    .lightbox-next {
        right: -35px;
    }
}


.series-grid,
.gallery-grid {
    position: relative;
    padding: 60px;
    border-radius: 12px;
    overflow: hidden; /* IMPORTANT for overlay clipping */
    background: url('../images/home-slider-3.jpeg') center/cover no-repeat;
    z-index: 1;
}

/* OVERLAY */
.series-grid::before,
.gallery-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

/* CONTENT ABOVE OVERLAY */
.series-grid > *,
.gallery-grid > * {
    position: relative;
    z-index: 2;
}


/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    background: #f8f9fa;
    margin-bottom: 2rem;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #6c757d;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs li:last-child span {
    color: #6c757d;
}


/* Download Modal Styles */
.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use dvh for dynamic viewport height on modern browsers */
    height: 100dvh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    z-index: 9999;
    position: fixed;
    inset: 0; /* Modern equivalent of top:0, right:0, bottom:0, left:0 */
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 85vh; /* Reduced from 90vh */
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Important for proper scrolling */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #d62828, #e63946);
    border-radius: 12px 12px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
}

/* Better touch scrolling on mobile */
.modal-body {
    -webkit-overflow-scrolling: touch;
}

.modal-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-form .form-group {
    margin-bottom: 20px;
}

.download-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.required {
    color: #d62828;
}

.download-form .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.download-form .form-input:focus {
    border-color: #d62828;
    outline: none;
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: normal;
    color: #666;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #d62828, #e63946);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success Modal */
.success-modal {
    text-align: center;
}

.success-icon {
    font-size: 60px;
    width: 80px;
    height: 80px;
    background: #d4edda;
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
}

.success-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 10px;
}

.success-submessage {
    color: #666;
    margin-bottom: 25px;
}

.close-btn {
    padding: 12px 30px;
    background: #d62828;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.close-btn:hover {
    background: #b71c1c;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* Fallback for older browsers */
@supports not (height: 100dvh) {
    .download-modal {
        height: -webkit-fill-available;
    }
}

/* Additional mobile fixes */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90dvh; /* Use dynamic viewport height */
        margin: 0 auto;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Improve touch targets */
    .form-input,
    .submit-btn,
    .modal-close {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better scrolling on iOS */
    .modal-body {
        -webkit-overflow-scrolling: touch;
        padding: 20px;
    }
    
    /* Fix for notched phones */
    @supports (padding: max(0px)) {
        .modal-body {
            padding-left: max(20px, env(safe-area-inset-left));
            padding-right: max(20px, env(safe-area-inset-right));
            padding-bottom: max(20px, env(safe-area-inset-bottom));
        }
    }
}

/* Fix for Android Chrome */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content {
        max-height: 80vh;
    }
    
    .modal-body {
        max-height: calc(80vh - 70px);
    }
}