@import url('colors.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    line-height: 1.6;
}

/* Typography */    
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* Button Styles */
.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-gold-dark);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 101, 3, 0.3);
}

/* Quote Modal Styles */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.quote-modal.is-active {
    display: flex;
}

.quote-modal__backdrop {
    position: fixed;
    inset: 0;
    background: var(--color-black-50);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.quote-modal__dialog {
    position: relative;
    background: var(--color-white);
    border-radius: 1rem;
    max-width: 42rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px var(--color-black-30);
    border: 1px solid var(--color-gray-200);
    z-index: 10000;
}

.quote-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--color-gray-100);
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-600);
    transition: all 0.2s;
    z-index: 10;
}

.quote-modal__close:hover {
    background: var(--color-secondary-10);
    border-color: var(--color-secondary-30);
    color: var(--color-secondary);
    transform: scale(1.1);
}

.quote-modal__header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--color-gray-200);
    background: linear-gradient(to bottom, var(--color-white), var(--color-gray-50));
}

.quote-modal__kicker {
    font-size: 0.875rem;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quote-modal__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: 0.5rem;
}

.quote-modal__subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

.quote-modal__form {
    padding: 2rem;
}

.quote-modal__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
    .quote-modal__grid {
        grid-template-columns: 1fr;
    }
}

.quote-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quote-modal__field--full {
    grid-column: 1 / -1;
}

.quote-modal__field span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.quote-modal__field input,
.quote-modal__field select,
.quote-modal__field textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.2s;
    font-family: inherit;
    background-color: var(--color-white);
    color: var(--color-text-primary);
}

.quote-modal__field input:hover,
.quote-modal__field select:hover,
.quote-modal__field textarea:hover {
    border-color: var(--color-secondary-30);
}

.quote-modal__field input:focus,
.quote-modal__field select:focus,
.quote-modal__field textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px var(--color-secondary-10);
}

.quote-modal__field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Quote Modal Button Styles */
.quote-modal__submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-gold-dark);
    color: var(--color-white);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--color-secondary-30);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.quote-modal__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--color-secondary-50);
}

.quote-modal__submit-btn:active {
    transform: translateY(0);
}

.quote-modal__submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.quote-modal__field select option {
    background-color: var(--color-white);
    color: var(--color-text-primary);
}

.quote-modal__field input::placeholder,
.quote-modal__field textarea::placeholder {
    color: var(--color-gray-400);
}

/* Quote Modal Message Styles */
#quote-message {
    border-radius: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

#quote-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

#quote-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.mobile-menu.active {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* ==================== Enhanced Footer Styles ==================== */

/* Footer Container */
.footer-enhanced {
    background: linear-gradient(180deg, #1a1f2e 0%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

/* Top Accent Line */
.footer-accent-line {
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Footer Sections */
.footer-section {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

/* Logo */
.footer-logo-wrapper {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 101, 3, 0.1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 101, 3, 0.2);
}

/* Description */
.footer-description {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Tagline */
.footer-tagline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
}

.footer-tagline i {
    font-size: 1rem;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-icon-dark {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-icon-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-icon-dark i {
    position: relative;
    z-index: 1;
}

.footer-icon-dark:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(255, 101, 3, 0.3);
}

.footer-icon-dark:hover::before {
    opacity: 1;
}

/* Footer Headings */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.75rem;
    position: relative;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.footer-heading-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-gold-dark);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-heading:hover .footer-heading-underline {
    width: 60px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-link i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    color: var(--color-secondary);
    opacity: 0.7;
}

.footer-link:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 8px;
    background: rgba(255, 101, 3, 0.1);
    border: 1px solid rgba(255, 101, 3, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(255, 101, 3, 0.2);
    transform: scale(1.1);
}

.footer-contact-text {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    display: block;
    transition: all 0.3s ease;
    cursor: default;
}

.footer-contact-text:hover {
    color: var(--color-secondary);
}

.footer-contact-link {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.8;
}

.footer-contact-link:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-copyright i {
    color: var(--color-secondary);
}

.footer-credits {
    display: flex;
    align-items: center;
}

.footer-credits-link {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-credits-link:hover {
    color: var(--color-white);
}

.footer-credits-link i {
    color: #ef4444;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
}

.footer-credits-brand {
    font-weight: 700;
    color: var(--color-white);
    background: var(--gradient-gold-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-enhanced {
        text-align: center;
    }

    .footer-logo-wrapper {
        display: flex;
        justify-content: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-heading {
        display: block;
        text-align: center;
    }

    .footer-heading-underline {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }

    .footer-link {
        justify-content: center;
    }

    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}



/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* Loader Styles */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-gray-200);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== Enhanced Hero Section ==================== */

/* Hero Container */
.hero-section-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0f1419 100%);
}

/* Hero Background */
.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 101, 3, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(40, 47, 61, 0.4) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-secondary);
    opacity: 0.4;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    right: 20%;
    animation: float 8s ease-in-out infinite 1s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    bottom: 30%;
    left: 40%;
    animation: float 7s ease-in-out infinite 2s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 40%;
    right: 35%;
    animation: float 9s ease-in-out infinite 1.5s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    bottom: 20%;
    right: 10%;
    animation: float 7.5s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.8;
    }
}

/* Background Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 101, 3, 0.1);
    top: -250px;
    right: -100px;
    animation: shapeMove1 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(40, 47, 61, 0.15);
    bottom: -200px;
    left: -100px;
    animation: shapeMove2 25s ease-in-out infinite;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 101, 3, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shapeMove3 30s ease-in-out infinite;
}

@keyframes shapeMove1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-100px, 100px); }
}

@keyframes shapeMove2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(100px, -100px); }
}

@keyframes shapeMove3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Hero Main */
.hero-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 101, 3, 0.1);
    border: 1px solid rgba(255, 101, 3, 0.3);
    border-radius: 50px;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    width: fit-content;
    animation: fadeInDown 0.8s ease-out forwards;
    box-shadow: 0 4px 12px rgba(255, 101, 3, 0.2);
}

.hero-badge-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--gradient-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

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

/* Hero Title */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    letter-spacing: -0.02em;
}

.hero-title-highlight {
    display: block;
    margin-top: 0.5rem;
    background: var(--gradient-gold-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Description */
.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.hero-btn:hover::before {
    transform: translateX(0);
}

.hero-btn-primary {
    background: var(--gradient-gold-dark);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 101, 3, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 101, 3, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(4px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-secondary);
    transform: translateY(-4px);
}

.hero-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    border-radius: 10px;
    background: var(--gradient-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.hero-stat-content {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero-visual {
    display: none;
    animation: fadeInRight 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

@media (min-width: 1024px) {
    .hero-visual {
        display: block;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual-card {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
}

.hero-visual-image {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--color-secondary);
    position: relative;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-visual-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold-dark);
    opacity: 0.1;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.hero-visual-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    right: -1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: badgePop 1s ease-out 1.2s forwards;
    opacity: 0;
}

@keyframes badgePop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-visual-badge i {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.hero-visual-badge span {
    font-weight: 700;
    color: var(--color-text-primary);
    font-size: 1.1rem;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeIn 1s ease-out 1.5s forwards;
    opacity: 0;
}

.hero-scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.hero-scroll-link span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll-icon {
    width: 2rem;
    height: 3rem;
    border: 2px solid currentColor;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.hero-scroll-icon i {
    font-size: 0.75rem;
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateY(4px);
    }
}

/* Hero Section Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-enhanced {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-stat-card {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badge {
        width: 100%;
        justify-content: center;
    }
}

/* Card Hover Effects */
.service-card,
.product-card {
    transition: all 0.3s ease;
}

.service-card:hover,
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* ==================== Tailwind-Based Hero Animations ==================== */

.hero-shimmer {
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-card-float {
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-badge-pop {
    animation: badgePop 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes badgePop {
    0% { opacity: 0; transform: scale(0.8); }
    50% { transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-scroll-animate {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.hero-scroll-arrow {
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(4px); }
}

/* Service Card 3D Pop-out Effect */
#services .grid {
    position: relative;
}

#services .group {
    perspective: 1500px;
    position: relative;
    z-index: 1;
    transition: z-index 0s 0.3s;
}

#services .group .relative {
    overflow: visible !important;
    border-radius: 0.75rem 0.75rem 0 0;
}

#services .group img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
    will-change: transform;
    object-fit: contain !important;
    padding: 1rem;
}

/* Hover effects only on desktop (min-width: 1024px) */
@media (min-width: 1024px) {
    #services .group:hover {
        z-index: 10;
        transition: z-index 0s 0s;
    }

    #services .group:hover img {
        transform: scale(1.2);
        filter: brightness(1.1) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
    }

    #services .group:hover .service-card-title {
        color: var(--color-secondary) !important;
    }
}

