/*
Theme Name: GeneratePress Child - Everluxe Hospitality
Theme URI: https://everluxe-hospitality.com
Description: Custom child theme for Everluxe Hospitality based on GeneratePress
Author: Your Name
Author URI: https://everluxe-hospitality.com
Template: generatepress
Version: 2.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generatepress-child
*/

/* ===================================
   AOS ANIMATION LIBRARY
   =================================== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css');

/* ===================================
   ROOT VARIABLES
   =================================== */
:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===================================
   CRITICAL FIX - FORCE VERTICAL LAYOUT FOR ALL PAGES
   =================================== */

/* Apply to ALL page templates */
body.page * {
    box-sizing: border-box;
}

body.page .site-content,
body.page .inside-article,
body.page .entry-content,
body.page article,
body.page .site-main,
body.page .generate-columns-container,
body.page .generate-columns {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    flex-direction: column !important;
}

/* Hide default page title on custom pages */
body.page-template-front-page .entry-header,
body.page-template-page-product .entry-header,
body.page-template-page-services .entry-header,
body.page-template-page-contact .entry-header {
    display: none !important;
}

/* Universal wrapper for all custom pages */
.everluxe-homepage-wrapper,
.everluxe-products-wrapper,
.everluxe-contact-wrapper,
.section-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    overflow-x: hidden;
}

/* ===================================
   SMOOTH SCROLL
   =================================== */
html {
    scroll-behavior: smooth;
    
}

/* ===================================
   TYPOGRAPHY
   =================================== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--primary-color);
}

/* Special styling for hero title only */
.hero-title {
    background: linear-gradient(135deg, #a87f47 0%, #b8935a 25%, #c9a76b 50%, #b8935a 75%, #a87f47 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: subtleGoldShine 6s ease-in-out infinite;
}

/* Fallback for browsers that don't support background-clip */
@supports not (background-clip: text) {
    h1, h2, h3, h4, h5, h6 {
        color: var(--primary-color);
    }
    .hero-title {
        color: #b8935a;
    }
}

@keyframes subtleGoldShine {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

/* ===================================
   CONTACT BAR - ENHANCED (ALL PAGES)
   =================================== */
.contact-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d30 100%);
    color: var(--white);
    padding: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block !important;
    clear: both;
    float: none !important;
}

.contact-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.contact-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.contact-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
}

/* Legacy contact bar support */
.contact-bar a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    margin: 0 20px;
    display: inline-block;
}

.contact-bar a:hover {
    color: var(--accent-color);
}


/* ===================================
   HERO SECTION - HOMEPAGE - ENHANCED UI
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 20px 100px;
    overflow: hidden;
    width: 100%;
    margin: 0;
    clear: both;
    float: none !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Simple dark transparent overlay */
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Animated Particles - Enhanced */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-particle 20s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(2) {
    top: 65%;
    left: 85%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.particle:nth-child(3) {
    top: 35%;
    left: 25%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    top: 75%;
    left: 65%;
    animation-delay: 9s;
    animation-duration: 19s;
}

.particle:nth-child(5) {
    top: 25%;
    left: 90%;
    animation-delay: 12s;
    animation-duration: 21s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(-80px, -120px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(-160px, -200px) scale(0.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

/* ===================================
   HERO BADGE - PREMIUM DESIGN
   =================================== */
.hero-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 28px !important;
    background: rgba(212, 175, 55, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 50px;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 35px !important;
    color: #F5E6D3 !important;
    font-family: 'Montserrat', 'Inter', sans-serif;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.8s ease-out forwards;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* ===================================
   HERO TITLE - LUXURY DESIGN
   =================================== */
.hero-title {
    font-size: 4rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 35px !important;
    letter-spacing: -1px !important;
    position: relative;
    z-index: 10;
    font-family: 'Playfair Display', 'Georgia', serif;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-line {
    display: block;
    background: linear-gradient(135deg, 
        #F5E6D3 0%, 
        #D4AF37 25%, 
        #FFD700 50%, 
        #D4AF37 75%, 
        #F5E6D3 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: luxuryGoldFlow 4s ease-in-out infinite, fadeInUp 1s ease-out forwards;
    opacity: 1 !important;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes luxuryGoldFlow {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* Fallback for non-supporting browsers */
@supports not (background-clip: text) {
    .hero-title-line {
        color: #D4AF37;
    }
}

/* ===================================
   HERO SUBTITLE & DESCRIPTION
   =================================== */
.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #F5E6D3 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6) !important;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

/* ===================================
   CTA BUTTONS - ENHANCED
   =================================== */
.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.hero-cta svg {
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

.hero-cta-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
    color: #1a1a1a;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    border: none;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5D76E 0%, #D4AF37 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.6);
}

.hero-cta-primary:hover::before {
    opacity: 1;
}

.hero-cta-primary span,
.hero-cta-primary svg {
    position: relative;
    z-index: 1;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* ===================================
   HERO STATS - REDESIGNED
   =================================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(212, 175, 55, 0.5), 
        transparent
    );
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F5D76E 0%, #D4AF37 50%, #F5D76E 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    animation: luxuryGoldFlow 3s ease-in-out infinite;
    font-family: 'Montserrat', sans-serif;
}

@supports not (background-clip: text) {
    .hero-stat-number {
        color: #D4AF37;
    }
}

.hero-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
}

/* ===================================
   SCROLL INDICATOR - ENHANCED
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 32px;
    height: 52px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 25px;
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    animation: scroll-down 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(24px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SECTION CONTAINER - UNIVERSAL
   =================================== */
.content-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   SECTION HEADERS - PREMIUM DESIGN
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-label {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.15) 100%);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.section-label:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.25) 100%);
    transform: translateY(-2px);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 30px auto 0;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

/* ===================================
   ABOUT SECTION - REDESIGNED
   =================================== */
.section-about {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 120px 0;
}

.section-about .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(44, 95, 79, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.two-column-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Image Column */
.column-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.image-frame:hover {
    transform: translateY(-10px) scale(1.02);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.5s ease;
}

.image-frame:hover .image-decoration {
    transform: translate(10px, 10px);
    border-color: rgba(212, 175, 55, 0.5);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d30 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #D4AF37;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

/* Content Column */
.column-content {
    padding: 20px 0;
}

.column-content .section-label {
    margin-bottom: 20px;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.content-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    margin-bottom: 30px;
    border-radius: 2px;
}

.content-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border-left: 4px solid #D4AF37;
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

.column-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.achievement-item {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.achievement-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Group */
.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-modern svg {
    transition: transform 0.3s ease;
}

.btn-modern:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 95, 79, 0.3);
}

/* ===================================
   WHY CHOOSE US SECTION - ENHANCED
   =================================== */
.section-features {
    padding: 120px 0;
    background: white;
    position: relative;
}

.section-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(44, 95, 79, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.feature-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-card-inner {
    padding: 45px 35px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto 30px;
}

.feature-icon-bg {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card-modern:hover .feature-icon-bg {
    transform: translate(-50%, -50%) scale(1.3) rotate(90deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.25) 100%);
}

.feature-icon {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    display: block;
    line-height: 90px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card-modern:hover .feature-icon {
    transform: scale(1.15) rotate(-10deg);
}

.feature-card-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.feature-card-modern:hover h3 {
    color: #D4AF37;
}

.feature-card-inner p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    flex-grow: 1;
}

.feature-arrow {
    margin-top: 25px;
    font-size: 1.8rem;
    color: #D4AF37;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.5s ease;
    font-weight: 300;
}

.feature-card-modern:hover .feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   PRODUCTS SECTION - ENHANCED
   =================================== */
.section-products {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(44, 95, 79, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.product-card:hover .product-icon {
    transform: scale(1.15) rotate(-5deg);
}

.product-card h3 {
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.4;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover h3 {
    color: #D4AF37;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.products-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* ===================================
   TESTIMONIALS SECTION - PREMIUM
   =================================== */
.section-testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d30 100%);
    position: relative;
    overflow: hidden;
}

.section-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

.section-testimonials .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: #D4AF37;
    border-color: rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.section-testimonials .section-title {
    color: #D4AF37;
}

.section-testimonials .section-title::after {
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

.section-testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.testimonial-stars {
    color: #D4AF37;
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0 0 30px 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ===================================
   CTA SECTION - FINAL PUSH
   =================================== */
.cta-section {
    position: relative;
    padding: 120px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 61, 48, 0.92) 0%, 
        rgba(44, 95, 79, 0.88) 100%
    );
    z-index: 1;
}

.cta-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5D76E 0%, #D4AF37 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button span,
.cta-button svg {
    position: relative;
    z-index: 1;
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* ===================================
   TABLET RESPONSIVE (768px - 1024px)
   =================================== */
@media (max-width: 1024px) {
    .section-container {
        padding: 0 30px;
    }
    
    .content-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 120px 30px 80px;
    }
    
    .hero-title {
        font-size: 3.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        gap: 60px;
    }
    
    .hero-stat::after {
        right: -30px;
    }
    
    .two-column-modern {
        gap: 60px;
    }
    
    .achievement-grid {
        gap: 20px;
    }
    
    .features-grid-modern,
    .products-grid,
    .testimonials-grid {
        gap: 30px;
    }
}

/* ===================================
   MOBILE RESPONSIVE (max-width: 768px)
   =================================== */
@media (max-width: 768px) {
    .content-section {
        padding: 70px 0;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    /* Hero Section */
    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 100px 20px 70px;
    }
    
    .hero-badge {
        font-size: 0.7rem !important;
        padding: 10px 20px !important;
        margin-bottom: 25px !important;
        margin-top: 70px !important;
        letter-spacing: 2px;
    }
   
    .hero-title {
        font-size: 2.8rem !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 25px !important;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .hero-cta-group {
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .hero-cta {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 50px;
    }
    
    .hero-stat {
        padding: 0 15px;
    }
    
    .hero-stat::after {
        right: -25px;
        height: 50px;
    }
    
    .hero-stat-number {
        font-size: 3rem;
    }
    
    .hero-stat-label {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    /* Reduce particle size on mobile */
    .particle {
        width: 4px;
        height: 4px;
    }
    
    /* About Section */
    .section-about {
        padding: 80px 0;
    }
    
    .two-column-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .column-image {
        order: 1;
    }
    
    .column-content {
        order: 2;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    /* Features */
    .features-grid-modern,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card-inner,
    .product-card {
        padding: 35px 25px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 80px 20px;
        background-attachment: scroll;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* ===================================
   SMALL MOBILE (max-width: 480px)
   =================================== */
@media (max-width: 480px) {
    .content-section {
        padding: 60px 0;
    }
    
    .section-container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 8px 18px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: 25px;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 90px 15px 60px;
        min-height: 100vh;
    }
    
    .hero-badge {
        font-size: 0.65rem !important;
        padding: 8px 16px !important;
        margin-bottom: 20px !important;
        letter-spacing: 1.5px;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 35px;
    }
    
    .hero-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 35px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stat {
        padding: 0;
    }
    
    .hero-stat::after {
        display: none;
    }
    
    .hero-stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    .scroll-arrow {
        width: 28px;
        height: 48px;
    }
    
    /* Hide particles on small mobile for better performance */
    .hero-particles {
        display: none;
    }
    
    /* About Section */
    .section-about {
        padding: 70px 0;
    }
    
    .two-column-modern {
        gap: 40px;
    }
    
    .image-decoration {
        width: 150px;
        height: 150px;
        top: -15px;
        right: -15px;
    }
    
    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 20px 25px;
    }
    
    .experience-badge .years {
        font-size: 2.5rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
    
    .content-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .content-divider {
        width: 60px;
        height: 3px;
        margin-bottom: 25px;
    }
    
    .content-highlight {
        padding: 20px 20px;
        margin-bottom: 25px;
    }
    
    .lead-text {
        font-size: 1.05rem;
    }
    
    .column-content p {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .achievement-item {
        padding: 20px 15px;
    }
    
    .achievement-number {
        font-size: 2.2rem;
    }
    
    .achievement-label {
        font-size: 0.85rem;
    }
    
    .cta-group {
        margin-top: 30px;
        gap: 15px;
    }
    
    .btn-modern {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    /* Features Section */
    .section-features {
        padding: 70px 0;
    }
    
    .feature-card-inner {
        padding: 30px 20px;
    }
    
    .feature-icon-bg {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        line-height: 80px;
    }
    
    .feature-card-inner h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    
    .feature-card-inner p {
        font-size: 0.95rem;
    }
    
    .feature-arrow {
        margin-top: 20px;
        font-size: 1.5rem;
    }
    
    /* Products Section */
    .section-products {
        padding: 70px 0;
    }
    
    .products-grid {
        margin-top: 40px;
        gap: 20px;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .product-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .product-card h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .product-card p {
        font-size: 0.95rem;
    }
    
    .products-cta {
        margin-top: 40px;
    }
    
    /* Testimonials Section */
    .section-testimonials {
        padding: 70px 0;
    }
    
    .testimonials-grid {
        margin-top: 40px;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
        top: 15px;
        left: 20px;
    }
    
    .testimonial-stars {
        font-size: 1.1rem;
        margin-bottom: 18px;
        letter-spacing: 2px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-title {
        font-size: 0.85rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 70px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   EXTRA SMALL DEVICES (max-width: 360px)
   =================================== */
@media (max-width: 360px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .hero-title {
        font-size: 1.9rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-stat-number {
        font-size: 2.2rem;
    }
    
    .content-title {
        font-size: 1.6rem;
    }
    
    .experience-badge .years {
        font-size: 2.2rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
    
    .feature-icon-bg {
        width: 70px;
        height: 70px;
    }
    
    .product-icon {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn-modern:focus,
.hero-cta:focus,
.cta-button:focus,
.contact-link:focus {
    outline: 3px solid rgba(212, 175, 55, 0.5);
    outline-offset: 3px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
}

/* Print styles */
@media print {
    .hero-particles,
    .scroll-indicator,
    .hero-cta-group,
    .cta-section,
    .contact-bar {
        display: none !important;
    }
    
    .hero-section {
        background: none !important;
        min-height: auto !important;
        padding: 20px !important;
    }
    
    .hero-overlay {
        display: none !important;
    }
    
    * {
        box-shadow: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .content-section {
        page-break-inside: avoid;
    }
}

/* Loading states */
.content-section[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.content-section[data-aos].aos-animate {
    opacity: 1;
}

/* Smooth image loading */
.image-frame img {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.image-frame img[src] {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Improve text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Hardware acceleration for animations */
.hero-particles,
.particle,
.feature-card-modern,
.product-card,
.testimonial-card,
.hero-cta,
.btn-modern,
.cta-button {
    will-change: transform;
}

/* Remove will-change after animation completes */
.hero-particles.animation-complete,
.particle.animation-complete,
.feature-card-modern:not(:hover),
.product-card:not(:hover),
.testimonial-card:not(:hover) {
    will-change: auto;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .section-label {
        border-width: 2px;
    }
    
    .feature-card-modern,
    .product-card,
    .testimonial-card {
        border-width: 2px;
    }
}

/* Dark mode support (optional - for future implementation) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if needed in future */
}

/* Prevent layout shift during font loading */
.hero-title,
.section-title,
.content-title {
    font-display: swap;
}

/* Ensure proper stacking context */
.hero-section,
.content-section,
.section-testimonials,
.cta-section {
    position: relative;
    z-index: 1;
}

/* Prevent text selection on decorative elements */
.hero-particles,
.scroll-indicator,
.feature-icon,
.product-icon,
.image-decoration {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Smooth scrolling for all browsers */
@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}

/* Fallback for browsers without scroll-behavior support */
@supports not (scroll-behavior: smooth) {
    html {
        scroll-behavior: auto;
    }
}

/* Optimize animations for mobile */
@media (max-width: 768px) {
    .hero-overlay::before,
    .section-features::before,
    .section-products::before,
    .section-testimonials::before,
    .cta-overlay::before {
        animation: none;
    }
}

/* Ensure touch targets are large enough for mobile */
@media (max-width: 768px) {
    .hero-cta,
    .btn-modern,
    .cta-button {
        min-height: 48px;
        min-width: 48px;
    }
}

/* Loading spinner (optional - for future use) */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spinner 1s ease-in-out infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Error states */
.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Success states */
.success-message {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

/* Visibility utilities */
.hide-on-mobile {
    display: block;
}

.show-on-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
    
    .show-on-mobile {
        display: block;
    }
}

/* Container max-width utilities */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===================================
   END OF FRONTPAGE STYLES
   =================================== */
/* ===================================
   ROOT VARIABLES
   =================================== */
:root {
    --primary-color: #2c5f4f;
    --primary-dark: #1a3d30;
    --accent-color: #d4af37;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --white: #ffffff;
    --bg-light: #f7fafc;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   RESET & BASE
   =================================== */
.everluxe-about-wrapper {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    overflow-y: visible;
}

/* ===================================
   ENHANCED PAGE HERO WITH FLOATING SHAPES
   =================================== */
.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 20px 100px;
    text-align: center;
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add this after .page-hero styles */
.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark semi-transparent overlay */
    z-index: 1;
}

/* Floating animation shapes - BEHIND overlay */
.hero-animation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Add overlay for better text readability */
/* Add overlay for better text readability */
.page-hero::before {
    display: none;
}
/* Ensure content appears above overlay */
.page-hero-content {
    position: relative;
    z-index: 2;
}

.hero-animation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: float-shapes 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes float-shapes {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, 40px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg);
        opacity: 0.5;
    }
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-badge-animated {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.badge-shine {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.hero-badge-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.page-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    
    /* Luxury Gold Gradient */
    background: linear-gradient(135deg, 
        #d4af37 0%,      /* Rich gold */
        #f4e5a1 25%,     /* Light gold */
        #d4af37 50%,     /* Rich gold */
        #c9a050 75%,     /* Deep gold */
        #d4af37 100%     /* Rich gold */
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Animated gold shimmer */
    animation: goldShimmer 4s ease-in-out infinite;
    
    /* Luxury glow effect */
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    text-shadow: none;
}

/* Gold shimmer animation */
@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% center;
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }
    50% {
        background-position: 100% center;
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
    }
}

/* Fallback for browsers that don't support background-clip */
@supports not (background-clip: text) {
    .page-hero-title {
        color: #d4af37;
        text-shadow: 0 4px 20px rgba(212, 175, 55, 0.6),
                     0 0 40px rgba(212, 175, 55, 0.4);
    }
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

/* Animated Scroll Indicator */
.scroll-indicator-hero {
    margin-top: 50px;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    position: relative;
    margin: 0 auto;
    animation: mouse-bounce 2s infinite;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes mouse-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 28px; }
}

/* ===================================
   SECTION STYLING
   =================================== */
.content-section {
    width: 100%;
    padding: 100px 20px;
    margin: 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-light {
    background: var(--white);
}

.section-gray {
    background: var(--bg-light);
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    text-align: center;
}

/* ===================================
   WELCOME SECTION
   =================================== */
.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ANIMATED STATS COUNTER */
.stats-counter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.05), rgba(212, 175, 55, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===================================
   TIMELINE SECTION
   =================================== */
.journey-timeline {
    position: relative;
    padding: 50px 0;
    margin: 60px 0;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 50px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 50px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px var(--accent-color);
    z-index: 2;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1);
    }
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-content:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   TWO COLUMN LAYOUT
   =================================== */
.journey-description {
    margin-top: 60px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.column-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.column-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 18px;
}

.column-image {
    position: relative;
}

/* ANIMATED PLACEHOLDER */
.animated-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(44, 95, 79, 0.3);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: ripple-effect 3s infinite;
}

@keyframes ripple-effect {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.placeholder-icon {
    font-size: 6rem;
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: bounce-icon 2s infinite;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animated-placeholder p {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ===================================
   ENHANCED FEATURES GRID
   =================================== */
.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card-enhanced {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card-enhanced:hover .feature-glow {
    opacity: 1;
    animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.feature-card-enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 95, 79, 0.2);
    border-color: var(--accent-color);
}

.feature-icon-animated {
    position: relative;
    margin-bottom: 25px;
}

.icon-bounce {
    font-size: 4rem;
    display: inline-block;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-5deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(5deg); }
}

.feature-card-enhanced:hover .icon-bounce {
    animation: icon-spin 0.6s ease-in-out;
}

@keyframes icon-spin {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.feature-card-enhanced h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-card-enhanced:hover h3 {
    color: var(--accent-color);
}

.feature-card-enhanced p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.feature-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: width 0.5s ease;
}

.feature-card-enhanced:hover .feature-hover-line {
    width: 100%;
}

/* ===================================
   ENHANCED PRODUCTS GRID
   =================================== */
.products-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.product-card-enhanced {
    perspective: 1000px;
}

.product-card-inner {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.1);
    transform-style: preserve-3d;
}

.product-card-enhanced:hover .product-card-inner {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(44, 95, 79, 0.25);
    border-color: var(--accent-color);
}

.product-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.icon-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(44, 95, 79, 0.1));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-circle 2s infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.product-icon {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: transform 0.5s ease;
}

.product-card-enhanced:hover .product-icon {
    transform: scale(1.15) rotate(10deg);
}

.product-card-inner h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.product-card-enhanced:hover h3 {
    color: var(--accent-color);
}

.product-card-inner p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* CARD SHINE EFFECT */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.product-card-enhanced:hover .card-shine {
    left: 150%;
}

/* ===================================
   ENHANCED CTA SECTION
   =================================== */
.cta-section-enhanced {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 120px 20px;
    text-align: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.1));
    animation: wave-motion 15s infinite linear;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.3;
}

.wave-2 {
    animation-delay: 2s;
    opacity: 0.2;
}

.wave-3 {
    animation-delay: 4s;
    opacity: 0.1;
}

@keyframes wave-motion {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.8);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

.cta-content-enhanced {
    position: relative;
    z-index: 10;
}

.cta-content-enhanced h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-content-enhanced p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-button-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.cta-button-enhanced:hover .button-arrow {
    transform: translateX(10px);
}

.button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button-enhanced:hover .button-ripple {
    width: 400px;
    height: 400px;
}

.cta-button-enhanced:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
    background: #e0be4d;
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .stats-counter {
        gap: 30px;
        padding: 40px 30px;
    }
    
    .timeline-item:nth-child(odd) {
        padding-right: calc(50% + 40px);
    }
    
    .timeline-item:nth-child(even) {
        padding-left: calc(50% + 40px);
    }
}

@media (max-width: 768px) {
    /* Remove internal scrollers - allow normal page scrolling */
    .everluxe-about-wrapper,
    .content-section,
    .section-container,
    .welcome-content,
    .stats-counter,
    .stat-item,
    .journey-timeline,
    .timeline-item,
    .features-grid-enhanced,
    .products-grid-enhanced {
        overflow: visible !important;
        -webkit-overflow-scrolling: auto !important;
        touch-action: pan-y !important;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .page-hero {
        padding: 100px 20px 80px;
        min-height: 60vh;
    }
    
    .floating-shape {
        display: none;
    }
    
    .page-hero-title {
        font-size: 2.2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stats-counter {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    /* TIMELINE MOBILE */
    .journey-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px !important;
        padding-right: 0 !important;
        justify-content: flex-start !important;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(0);
    }
    
    .timeline-content {
        padding: 25px;
    }
    
    .timeline-year {
        font-size: 0.8rem;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .animated-placeholder {
        padding: 60px 30px;
        min-height: 320px;
    }
    
    .placeholder-icon {
        font-size: 4rem;
    }
    
    .animated-placeholder p {
        font-size: 1.2rem;
    }
    
    .features-grid-enhanced,
    .products-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card-enhanced,
    .product-card-inner {
        padding: 35px 25px;
    }
    
    .icon-bounce {
        font-size: 3rem;
    }
    
    .product-icon {
        font-size: 3rem;
    }
    
    .cta-section-enhanced {
        padding: 80px 20px;
    }
    
    .cta-content-enhanced h2 {
        font-size: 2rem;
    }
    
    .cta-content-enhanced p {
        font-size: 1rem;
    }
    
    .cta-button-enhanced {
        padding: 18px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 90px 15px 70px;
    }
    
    .page-hero-title {
        font-size: 1.8rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .column-content h3 {
        font-size: 1.6rem;
    }
    
    .placeholder-icon {
        font-size: 3.5rem;
    }
    
    .animated-placeholder p {
        font-size: 1.1rem;
    }
    
    .feature-card-enhanced h3,
    .product-card-inner h3 {
        font-size: 1.3rem;
    }
    
    .cta-content-enhanced h2 {
        font-size: 1.7rem;
    }
    
    .cta-button-enhanced {
        padding: 16px 35px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATION
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   FALLBACK CSS ANIMATIONS (NO JS REQUIRED)
   =================================== */

/* Fade in sections on page load */
.content-section {
    animation: fadeInSection 1s ease-out;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero content animation */
.page-hero-content {
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section badge pop-in */
.section-badge {
    animation: badgePopIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes badgePopIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Cards stagger animation */
.feature-card-enhanced,
.product-card-enhanced {
    animation: cardSlideUp 0.8s ease-out backwards;
}

.feature-card-enhanced:nth-child(1),
.product-card-enhanced:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card-enhanced:nth-child(2),
.product-card-enhanced:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card-enhanced:nth-child(3),
.product-card-enhanced:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card-enhanced:nth-child(4),
.product-card-enhanced:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card-enhanced:nth-child(5),
.product-card-enhanced:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card-enhanced:nth-child(6),
.product-card-enhanced:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline items animation */
.timeline-item {
    animation: timelineFadeIn 1s ease-out backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes timelineFadeIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats items animation */
.stat-item {
    animation: statZoomIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes statZoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Make sure all animations work */
.hero-badge-animated {
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    to {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    }
}


/* ===================================
   PRODUCTS PAGE STYLES
   =================================== */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
    animation: fadeInLeft 0.8s ease-out both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-showcase:nth-child(1) { animation-delay: 0.1s; }
.product-showcase:nth-child(2) { animation-delay: 0.2s; }
.product-showcase:nth-child(3) { animation-delay: 0.3s; }
.product-showcase:nth-child(4) { animation-delay: 0.4s; }

.product-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(44, 95, 79, 0.12);
}

.product-showcase.reverse {
    direction: rtl;
}

.product-showcase.reverse > * {
    direction: ltr;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.product-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-showcase:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.product-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.product-content > p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 15px 0 15px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), #1a3d30);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-features li:hover {
    padding-left: 45px;
    color: var(--primary-color);
}

.product-features li:hover::before {
    background: linear-gradient(135deg, var(--accent-color), #c39d2f);
    transform: translateY(-50%) scale(1.1);
}

.product-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out both;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(44, 95, 79, 0.15);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   SERVICES PAGE STYLES
   =================================== */
.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: var(--bg-light);
    border-radius: 30px;
}

.service-showcase-reverse {
    direction: rtl;
}

.service-showcase-reverse > * {
    direction: ltr;
}

.service-detailed-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    animation: fadeInLeft 0.8s ease-out both;
}

.service-detailed-card:nth-child(1) { animation-delay: 0.1s; }
.service-detailed-card:nth-child(2) { animation-delay: 0.2s; }
.service-detailed-card:nth-child(3) { animation-delay: 0.3s; }
.service-detailed-card:nth-child(4) { animation-delay: 0.4s; }

.service-detailed-card:hover {
    transform: translateX(12px) scale(1.01);
    box-shadow: 0 15px 55px rgba(44, 95, 79, 0.15);
}

.service-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.service-showcase:hover .service-image-wrapper img {
    transform: scale(1.08);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-showcase:hover .service-image-overlay {
    opacity: 1;
}

.service-content {
    padding: 20px;
    flex: 1;
}

.service-number {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(44, 95, 79, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    min-width: 120px;
    transition: all 0.4s ease;
}

.service-detailed-card:hover .service-number {
    opacity: 0.4;
    transform: scale(1.1);
    color: var(--primary-color);
}

.service-content h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 15px 0 15px 35px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--primary-color), #1a3d30);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    padding-left: 40px;
    color: var(--primary-color);
}

.service-features li:hover::before {
    background: linear-gradient(135deg, var(--accent-color), #c39d2f);
    transform: translateY(-50%) scale(1.15) rotate(360deg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
    gap: 15px;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.section-testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(44, 95, 79, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 95, 79, 0.15);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease-out both;
}

.contact-info-card:nth-child(1) { animation-delay: 0.1s; }
.contact-info-card:nth-child(2) { animation-delay: 0.2s; }
.contact-info-card:nth-child(3) { animation-delay: 0.3s; }

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(44, 95, 79, 0.15);
}

.contact-card-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

.contact-card-note {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
    margin-top: 10px;
}

/* CONTACT FORM */
.contact-form-wrapper {
    max-width: 900px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.everluxe-contact-form {
    width: 100%;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d0d0d0;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(44, 95, 79, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
    line-height: 1.6;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-submit-btn {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d30 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(44, 95, 79, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #1a3d30 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(44, 95, 79, 0.4);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 25px;
    line-height: 1.6;
}

.form-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-note a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* WHY CHOOSE US GRID */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-choose-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s ease-out both;
}

.why-choose-card:nth-child(1) { animation-delay: 0.1s; }
.why-choose-card:nth-child(2) { animation-delay: 0.2s; }
.why-choose-card:nth-child(3) { animation-delay: 0.3s; }

.why-choose-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(44, 95, 79, 0.2);
}

.why-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.why-choose-card:hover .why-icon {
    transform: scale(1.2) rotate(10deg);
}

.why-choose-card h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.why-choose-card:hover h3 {
    color: var(--accent-color);
}

.why-choose-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* FAQ SECTION */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.6s ease-out both;
    position: relative;
    overflow: hidden;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(44, 95, 79, 0.15);
    border-left-color: var(--primary-color);
}

.faq-item h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    padding-left: 30px;
}

.faq-item h3::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* MAP SECTION */
.section-map {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-map .section-title {
    margin-bottom: 50px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    animation: fadeInUp 0.8s ease-out;
    border: 3px solid var(--white);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 500px;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ===================================
   CTA SECTION WITH BACKGROUND (ALL PAGES)
   =================================== */
.cta-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px;
    position: relative;
    width: 100%;
    margin: 0;
    display: block !important;
    clear: both !important;
    float: none !important;
}

/* Mobile Fix - Remove fixed attachment on mobile */
@media (max-width: 768px) {
    .cta-section {
        background-attachment: scroll;
        padding: 80px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.4), rgba(26, 61, 48, 0.35));
    z-index: 1;
}

.cta-section .section-container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
    background: #c39d2f;
    color: var(--text-dark);
}

/* ===================================
   RESPONSIVE DESIGN - ALL PAGES
   =================================== */

@media (max-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .features-grid,
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 1200px) {
    .two-column,
    .two-column-modern {
        gap: 60px;
    }
    
    .image-frame img,
    .column-image img {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .hero-stat-number {
        font-size: 2.5rem;
    }
    
    .two-column,
    .two-column-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .two-column.reverse,
    .two-column-modern.reverse {
        direction: ltr;
    }
    
    .product-showcase,
    .service-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .product-showcase.reverse,
    .service-showcase-reverse {
        direction: ltr;
    }
    
    .service-detailed-card {
        gap: 35px;
        padding: 40px 30px;
    }
    
    .service-number {
        font-size: 4rem;
        min-width: 100px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-title {
        font-size: 2.2rem;
    }
    
    .features-grid,
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 20px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-label {
        font-size: 0.85rem;
    }
    
    .contact-bar-content {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .features-grid,
    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .image-frame img,
    .column-image img {
        height: 350px;
    }
    
    .image-decoration {
        display: none;
    }
    
    .product-showcase,
    .service-showcase {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .product-image img,
    .service-image-wrapper img {
        height: 300px;
    }
    
    .product-content h3 {
        font-size: 2rem;
    }
    
    .product-content > p {
        font-size: 1.05rem;
    }
    
    .product-features li {
        font-size: 1rem;
        padding: 12px 0 12px 35px;
    }
    
    .product-benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
    
    .benefit-card h3 {
        font-size: 1.4rem;
    }
    
    .service-detailed-card {
        flex-direction: column;
        padding: 30px 25px;
        gap: 25px;
    }
    
    .service-number {
        font-size: 3rem;
        min-width: auto;
        margin-bottom: 10px;
    }
    
    .service-content h3 {
        font-size: 1.8rem;
    }
    
    .service-content p {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .mission-vision-grid,
    .team-grid,
    .process-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-card {
        padding: 35px 25px;
    }
    
    .why-icon {
        font-size: 3.5rem;
    }
    
    .why-choose-card h3 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 30px 25px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 6px 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card-inner {
        padding: 35px 25px;
    }
    
    .product-showcase,
    .service-showcase {
        padding: 25px 15px;
    }
    
    .product-showcase {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .product-image img {
        height: 280px;
    }
    
    .product-content {
        padding: 10px;
    }
    
    .product-content h3 {
        font-size: 1.7rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .service-detailed-card {
        padding: 25px 20px;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .contact-cards-grid {
        gap: 25px;
    }
    
    .contact-info-card {
        padding: 35px 25px;
    }
}

/* ===================================
   PREMIUM HOVER EFFECTS & ANIMATIONS
   =================================== */

/* Smooth transitions for all interactive elements */
a, button, input, textarea, select {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Page Load Fade In */
body {
    animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Section Title Underline Animation */
.section-title {
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Image Hover Zoom Effect */
.column-image {
    overflow: hidden;
    border-radius: 10px;
}

/* Feature Card Premium Hover */
.feature-card,
.feature-card-modern {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.feature-card-modern::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 0.5s;
}

.feature-card:hover::before,
.feature-card-modern:hover::before {
    left: 100%;
}

.feature-card:hover,
.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 95, 79, 0.2);
}

/* Legacy compatibility for old class names */
.hero-section .hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Ensure all wrappers are properly displayed */
.everluxe-homepage-wrapper,
.everluxe-products-wrapper,
.everluxe-contact-wrapper {
    display: block !important;
    width: 100% !important;
}

/* Force all sections to be full width */
body.page .content-section,
body.page-template-front-page .content-section,
body.page-template-page-product .content-section,
body.page-template-page-services .content-section,
body.page-template-page-contact .content-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 100px 20px;
    display: block !important;
    clear: both !important;
    float: none !important;
}

/* Ensure proper spacing for all page types */
body.page article,
body.page .entry-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Fix any potential conflicts with GeneratePress */
.generate-columns-container {
    display: block !important;
}

.inside-article {
    padding: 0 !important;
}

/* Ensure backgrounds work on all pages */
body.page .section-about,
body.page .section-features,
body.page .section-testimonials,
body.page .section-map,
body.page .cta-section {
    width: 100% !important;
    margin: 0 !important;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .contact-bar,
    .hero-particles,
    .scroll-indicator,
    .cta-section {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .hero-section,
    .page-hero {
        background: #fff !important;
        color: #000 !important;
        padding: 20px !important;
    }
}


/* ===================================
   HOMEPAGE FIXES - December 2024
   =================================== */

/* Fix Hero Section Text Visibility */
.hero-content,
.hero-content * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.hero-title {
    color: #D4AF37 !important;
    -webkit-text-fill-color: #D4AF37 !important;
    background: none !important;
    opacity: 1 !important;
}

.hero-title-line {
    display: block !important;
    opacity: 1 !important;
    animation: none !important;
}

.hero-subtitle,
.hero-description {
    opacity: 1 !important;
    color: #ffffff !important;
}

/* Fix About Section Image Overlay Issue */
.section-about {
    position: relative;
    overflow: visible !important;
}

.section-about .two-column-modern {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    overflow: visible !important;
}

.section-about .column-image {
    flex: 1;
    position: relative;
    z-index: 1;
    max-width: 50%;
}

.section-about .column-content {
    flex: 1;
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.section-about .image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.section-about .image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
    position: relative;
    z-index: 1;
}

.section-about .image-decoration {
    position: absolute !important;
    z-index: -1 !important;
    pointer-events: none !important;
    opacity: 0.3 !important;
}

/* Mobile Responsive for About Section */
@media (max-width: 768px) {
    .section-about .two-column-modern {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .section-about .column-image,
    .section-about .column-content {
        max-width: 100%;
        width: 100%;
    }
    
    .section-about .image-frame img {
        max-height: 300px;
    }
    
    .section-about .image-decoration {
        display: none;
    }
}


/* Three Column Features Grid */
.features-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive for 3 columns */
@media (max-width: 992px) {
    .features-three-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-three-columns {
        grid-template-columns: 1fr;
    }
}