/**
 * Norma Practice - Custom Styles
 * Glassmorphism Header + Footer
 */

/* ================================================
   CSS CUSTOM PROPERTIES
   ================================================ */
:root {
    --dark-900: #14141c;
    --dark-950: #0a0a14;
    --accent-400: #C9A962;
    --accent-500: #b8973f;
    --accent-500-rgb: 184, 151, 63;
    --accent-600: #a07d2e;
    --accent-700: #876520;
}

/* ================================================
   SHARED PAGE COMPONENTS
   ================================================ */

/* Page Hero */
.page-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(180deg, var(--dark-950) 0%, var(--dark-900) 100%);
    text-align: center;
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-label {
    display: inline-block;
    color: var(--accent-400);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero-desc {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Section Components */
.section-label {
    display: inline-block;
    color: var(--accent-400);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
}

/* CTA Section */
.norma-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-950) 100%);
}

.norma-cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.norma-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.norma-cta-container p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Outline Button Variant */
.norma-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--accent-400);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(201, 169, 98, 0.35);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.norma-btn-outline:hover {
    background: rgba(201, 169, 98, 0.08);
    border-color: var(--accent-400);
    color: #fff;
}

/* Shared Responsive */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.5rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .norma-cta-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ================================================
   GLASSMORPHISM HEADER STYLES
   ================================================ */

/* Base Font & Overflow Fix */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
    -webkit-text-size-adjust: 100%;
}

/* Global Image Responsive */
img {
    max-width: 100%;
    height: auto;
}

video {
    max-width: 100%;
}

/* Menu open - scroll engelle */
body.menu-open {
    overflow: hidden;
}

/* Glass Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 40px;
    transition: padding 0.3s ease;
}

.glass-header.scrolled {
    padding: 12px 40px;
}

.glass-header.scrolled .glass-navbar {
    background: rgba(10, 10, 15, 0.9);
}

/* Glass Navbar - Pill Shape */
.glass-navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: rgba(12, 12, 18, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo */
.glass-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

/* Navigation Links */
.glass-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 40px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #fff;
}

.dropdown-arrow {
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    opacity: 1;
    transform: rotate(180deg);
}

/* Dropdown Panel */
.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: rgba(18, 18, 25, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 10px;
    padding-top: 20px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Bridge for hover - prevents dropdown from closing */
.dropdown-panel::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-panel,
.dropdown-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-panel a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dropdown-panel a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Right Actions */
.glass-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

/* Text Button */
.nav-text-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-text-btn:hover {
    color: #fff;
}

.nav-text-btn svg {
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-text-btn:hover svg {
    opacity: 1;
    transform: translateX(3px);
}

/* CTA Button */
.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0f;
    text-decoration: none;
    background: linear-gradient(135deg, #c9a962 0%, #d4b876 100%);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    transform: translateY(-1px);
}

.nav-cta-btn svg {
    opacity: 0.9;
    transition: transform 0.2s ease;
}

.nav-cta-btn:hover svg {
    transform: translateX(3px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Panel */
.mobile-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 28, 0.98) 0%, rgba(15, 15, 20, 0.99) 100%);
    backdrop-filter: blur(20px);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-panel.active {
    right: 0;
}

.mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-panel-header .logo-text {
    color: #fff;
}

.mobile-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mobile-close svg {
    color: #fff;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Nav */
.mobile-panel-nav {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.mobile-dropdown {
    margin-bottom: 8px;
}

.mobile-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    text-align: left;
}

.mobile-dropdown-trigger::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-trigger::after {
    transform: rotate(-135deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 400px;
}

.mobile-dropdown-content a {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-dropdown-content a:hover {
    color: #fff;
}

.mobile-nav-link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile Footer */
.mobile-panel-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0f;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(135deg, #c9a962 0%, #d4b876 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
}

.floating-main {
    position: relative;
    z-index: 3;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a962 0%, #d4b876 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-main:hover {
    transform: scale(1.05);
}

.floating-main svg {
    color: #0a0a0f;
    transition: all 0.3s ease;
}

.floating-main .icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.floating-contact.active .floating-main .icon-open {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.floating-contact.active .floating-main .icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Floating Buttons */
.floating-btn {
    position: absolute;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-btn svg {
    color: #fff;
}

.floating-phone {
    background: linear-gradient(135deg, #EC602F 0%, #FF7A4D 100%);
    top: 0;
    left: 0;
    transform: translate(5px, 25%);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, 100%);
}

.floating-contact.active .floating-btn {
    opacity: 1;
    pointer-events: auto;
}

.floating-contact.active .floating-phone {
    transform: translate(calc(-100% - 12px), -30%);
}

.floating-contact.active .floating-whatsapp {
    transform: translate(-50%, -30%);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-contact.active .floating-phone:hover {
    transform: translate(calc(-100% - 12px), -30%) scale(1.1);
}

.floating-contact.active .floating-whatsapp:hover {
    transform: translate(-50%, -30%) scale(1.1);
}

/* Main Content */
.main-content {
    padding-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .glass-header {
        padding: 16px 24px;
    }

    .glass-navbar {
        padding: 12px 20px;
    }

    .glass-nav-links {
        display: none;
    }

    .nav-text-btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-content {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .glass-header {
        padding: 12px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .glass-navbar {
        padding: 10px 16px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-cta-btn {
        display: none;
    }

    .floating-contact {
        right: 20px;
        bottom: 20px;
    }

    .floating-main {
        width: 50px;
        height: 50px;
    }

    .floating-btn {
        width: 42px;
        height: 42px;
    }

    .main-content {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .norma-scroll-indicator {
        bottom: 25px;
    }

    .norma-scroll-indicator span {
        font-size: 10px;
    }

    .norma-scroll-indicator .scroll-mouse {
        width: 20px;
        height: 32px;
    }

    .glass-header {
        padding: 10px 12px;
    }

    .glass-navbar {
        padding: 10px 14px;
        border-radius: 50px;
    }

    .header-logo-img {
        height: 26px;
    }

    .footer-logo-img {
        height: 36px;
    }

    .main-content {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .norma-scroll-indicator {
        bottom: 20px;
    }

    .norma-scroll-indicator span {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .norma-scroll-indicator .scroll-mouse {
        width: 18px;
        height: 28px;
    }

    .glass-header {
        padding: 8px 10px;
    }

    .glass-navbar {
        padding: 8px 12px;
        border-radius: 40px;
    }

    .mobile-panel {
        max-width: 100%;
    }

    .header-logo-img {
        height: 22px;
    }

    .footer-logo-img {
        height: 32px;
    }

    .mobile-toggle {
        width: 36px;
        height: 36px;
    }

    .main-content {
        padding-top: 0;
    }
}

.menu-item .chevron-icon {
    transition: transform 0.3s ease;
}

.menu-item:hover .chevron-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(236, 96, 47, 0.08);
    color: #EC602F;
}

/* Mega Menu */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 30px;
}

.mega-menu-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.mega-menu-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.mega-menu-links a:hover {
    background: rgba(236, 96, 47, 0.08);
    transform: translateY(-2px);
}

.mega-link-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(236, 96, 47, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mega-link-icon svg {
    color: #EC602F;
}

.mega-menu-links a:hover .mega-link-icon {
    background: #EC602F;
}

.mega-menu-links a:hover .mega-link-icon svg {
    color: #fff;
}

.mega-link-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.mega-menu-links a:hover .mega-link-text {
    color: #EC602F;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* CTA Button */
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #EC602F;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta svg {
    color: #EC602F;
    transition: color 0.3s ease;
}

.header-cta:hover {
    background: #EC602F;
    color: #fff;
}

.header-cta:hover svg {
    color: #fff;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-current:hover {
    color: #EC602F;
}

.lang-switcher:hover .chevron-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 60px;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover {
    background: rgba(236, 96, 47, 0.1);
    color: #EC602F;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #EC602F;
    z-index: 1002;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-close svg {
    color: #fff;
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Navigation */
.mobile-nav {
    padding: 20px 25px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-list > li > a:hover {
    opacity: 0.8;
}

.mobile-menu-list .chevron-icon {
    transition: transform 0.3s ease;
}

.has-submenu.open .chevron-icon {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 15px 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.has-submenu.open .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-submenu li a:hover {
    color: #fff;
}

/* Mobile CTA */
.mobile-cta {
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 25px;
    background: linear-gradient(135deg, #c9a962 0%, #d4b876 100%);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #0a0a0f;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #d4b876 0%, #e0c485 100%);
    transform: translateY(-2px);
}

/* Floating Contact Tools */
.contact-tools {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}

.contact-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(236, 96, 47, 0.2);
    animation: contactRipple 2s infinite;
    pointer-events: none;
}

@keyframes contactRipple {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.contact-main-btn {
    position: relative;
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #EC602F;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-main-btn:hover {
    transform: scale(1.05);
}

.contact-main-btn svg {
    color: #fff;
    transition: all 0.3s ease;
}

.contact-main-btn .icon-close {
    position: absolute;
    opacity: 0;
    transform: rotate(90deg);
}

.contact-tools.active .contact-main-btn .icon-phone {
    opacity: 0;
    transform: rotate(-90deg);
}

.contact-tools.active .contact-main-btn .icon-close {
    opacity: 1;
    transform: rotate(0);
}

/* Contact Sub Buttons */
.contact-sub-btn {
    position: absolute;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #EC602F;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-sub-btn svg {
    color: #fff;
}

.phone-btn {
    top: 0;
    left: 0;
    transform: translate(5px, 25%);
}

.whatsapp-btn {
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, 100%);
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-tools.active .contact-sub-btn {
    opacity: 1;
    pointer-events: auto;
}

.contact-tools.active .phone-btn {
    transform: translate(calc(-100% - 15px), -30%);
}

.contact-tools.active .whatsapp-btn {
    transform: translate(-50%, -30%);
}

.contact-sub-btn:hover {
    transform: scale(1.1);
}

.contact-tools.active .phone-btn:hover {
    transform: translate(calc(-100% - 15px), -30%) scale(1.1);
}

.contact-tools.active .whatsapp-btn:hover {
    transform: translate(-50%, -30%) scale(1.1);
}

/* Contact Tooltip */
.contact-sub-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 6px 12px;
    background: #1a1a1a;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-sub-btn:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Main Content */
.main-content {
    margin-top: 0;
}

/* Responsive Header Styles */
@media (max-width: 1200px) {
    .header-menu {
        gap: 25px;
    }

    .mega-menu-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .header-container {
        height: 80px;
        padding: 0 25px;
    }

    .header-logo .logo-svg {
        height: 48px;
    }

    .header-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-content {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 20px;
    }

    .header-logo .logo-svg {
        height: 42px;
    }

    .lang-switcher {
        display: none;
    }

    .main-content {
        margin-top: 0;
    }

    .contact-tools {
        right: 20px;
        bottom: 20px;
    }

    .contact-main-btn {
        width: 54px;
        height: 54px;
    }

    .contact-sub-btn {
        width: 42px;
        height: 42px;
    }

    .contact-ripple {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 640px) {
    .header-container {
        height: 68px;
        padding: 0 18px;
    }

    .header-logo .logo-svg {
        height: 40px;
    }

    .main-content {
        margin-top: 0;
    }

    .contact-tools {
        right: 15px;
        bottom: 15px;
    }

    .contact-main-btn {
        width: 50px;
        height: 50px;
    }

    .contact-sub-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 65px;
        padding: 0 15px;
    }

    .header-logo .logo-svg {
        height: 38px;
    }

    .mobile-menu {
        max-width: 100%;
    }

    .main-content {
        margin-top: 0;
    }

    .contact-main-btn {
        width: 48px;
        height: 48px;
    }

    .contact-sub-btn {
        width: 38px;
        height: 38px;
    }
}

/* ================================================
   MISSING TAILWIND UTILITIES FOR FOOTER
   ================================================ */

/* Space-Y Utilities */
.space-y-12 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 12px;
}
.space-y-15 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 15px;
}
.space-y-20 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 20px;
}

/* Margin Utilities */
.mb-10 { margin-bottom: 10px; }
.mb-25 { margin-bottom: 25px; }

/* Padding Utilities */
.py-25 { padding-top: 25px; padding-bottom: 25px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-70 { padding-top: 70px; padding-bottom: 70px; }
.px-20 { padding-left: 20px; padding-right: 20px; }

/* Leading (Line Height) */
.leading-relaxed { line-height: 1.625; }

/* Shrink */
.shrink-0 { flex-shrink: 0; }

/* Col Span */
.col-span-1 { grid-column: span 1 / span 1; }

/* Border Width */
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }

/* Responsive Grid Columns */
@media (min-width: 1024px) {
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
}
@media (max-width: 1023px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:py-50 { padding-top: 50px; padding-bottom: 50px; }
    .lg\:py-40 { padding-top: 40px; padding-bottom: 40px; }
    .lg\:gap-40 { gap: 40px; }
    .lg\:gap-30 { gap: 30px; }
    .lg\:flex-col { flex-direction: column; }
    .lg\:max-w-none { max-width: none; }
    .lg\:text-center { text-align: center; }
    .lg\:text-24 { font-size: 24px; }
}
@media (max-width: 767px) {
    .md\:flex-col { flex-direction: column; }
    .md\:gap-15 { gap: 15px; }
    .md\:text-center { text-align: center; }
}
@media (max-width: 639px) {
    .sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .sm\:col-span-1 { grid-column: span 1 / span 1; }
    .sm\:py-40 { padding-top: 40px; padding-bottom: 40px; }
    .sm\:py-30 { padding-top: 30px; padding-bottom: 30px; }
    .sm\:py-20 { padding-top: 20px; padding-bottom: 20px; }
    .sm\:gap-30 { gap: 30px; }
    .sm\:gap-15 { gap: 15px; }
    .sm\:gap-10 { gap: 10px; }
    .sm\:mb-20 { margin-bottom: 20px; }
    .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 12px; }
    .sm\:space-y-15 > :not([hidden]) ~ :not([hidden]) { margin-top: 15px; }
    .sm\:text-20 { font-size: 20px; }
    .sm\:text-16 { font-size: 16px; }
    .sm\:text-14 { font-size: 14px; }
    .sm\:text-13 { font-size: 13px; }
    .sm\:flex-col { flex-direction: column; }
    .sm\:w-full { width: 100%; }
    .sm\:h-\[50px\] { height: 50px; }
    .sm\:h-\[36px\] { height: 36px; }
    .sm\:w-\[36px\] { width: 36px; }
    .sm\:w-\[40px\] { width: 40px; }
    .sm\:h-\[40px\] { height: 40px; }
    .sm\:px-20 { padding-left: 20px; padding-right: 20px; }
}

/* ================================================
   PRELOADER STYLES (from footer.php)
   ================================================ */
.preloader {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.preloader.is-play {
    opacity: 1;
}

.preloader.is-stop {
    opacity: 0;
}

.preloader-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform: translateZ(0);
    background: #FFFFFF;
    opacity: 0.5;
}

.preloader .preloader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 20;
    padding: 200px 160px;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 3px solid #ec602f;
    border-top-color: transparent !important;
    border-left-color: transparent !important;
    animation: preloader-spin infinite 1s linear;
}

@keyframes preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1680px) {
    .preloader .preloader-inner {
        padding: 140px;
    }
}

@media screen and (max-width: 1440px) {
    .preloader .preloader-inner {
        padding: 80px;
    }
}

@media screen and (max-width: 1280px) {
    .preloader .preloader-inner {
        padding: 60px;
    }
}

@media screen and (max-width: 1024px) {
    .preloader .preloader-inner {
        padding: 45px;
    }
}

@media screen and (max-width: 768px) {
    .preloader .preloader-inner {
        padding: 30px;
    }
}

/* ================================================
   GRID STYLES
   ================================================ */
.news-grid-custom {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

@media (min-width: 768px) {
    .news-grid-custom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .news-grid-custom {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ================================================
   LINE CLAMP UTILITIES
   ================================================ */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================================================
   PROSE TYPOGRAPHY
   ================================================ */
.prose {
    max-width: none;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1e3a5f;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c5282;
}

.prose ul,
.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

.prose strong {
    font-weight: 600;
    color: #1a202c;
}

/* ================================================
   SVG LOGO STYLES (from header.php)
   ================================================ */
.header-logo-svg .cls-1,
.header-logo-svg .cls-2,
.header-logo-svg .cls-3,
.header-logo-svg .cls-4,
.header-logo-svg .cls-5,
.header-logo-svg .cls-6,
.header-logo-svg .cls-7 {
    fill: none;
}

.header-logo-svg .cls-2,
.header-logo-svg .cls-3,
.header-logo-svg .cls-4,
.header-logo-svg .cls-5,
.header-logo-svg .cls-6,
.header-logo-svg .cls-7 {
    stroke-miterlimit: 10;
}

.header-logo-svg .cls-2,
.header-logo-svg .cls-3,
.header-logo-svg .cls-5,
.header-logo-svg .cls-6 {
    stroke: #fff;
}

.header-logo-svg .cls-2,
.header-logo-svg .cls-4 {
    stroke-width: 9px;
}

.header-logo-svg .cls-3 {
    stroke-width: 6px;
}

.header-logo-svg .cls-8 {
    fill: #929191;
}

.header-logo-svg .cls-4 {
    stroke: #050606;
}

.header-logo-svg .cls-16 {
    fill: #fff;
}

.header-logo-svg .cls-17 {
    fill: #cf5428;
}

.header-logo-svg .cls-5 {
    stroke-width: 3.94px;
}

.header-logo-svg .cls-5,
.header-logo-svg .cls-6 {
    stroke-linecap: square;
}

.header-logo-svg .cls-6 {
    stroke-width: 4px;
}

.header-logo-svg .cls-7 {
    stroke: #0b0c0c;
    stroke-width: 1px;
}

/* SVG Clip-path classes */
.header-logo-svg .cls-9 {
    clip-path: url(#clippath-1);
}

.header-logo-svg .cls-10 {
    clip-path: url(#clippath-3);
}

.header-logo-svg .cls-11 {
    clip-path: url(#clippath-4);
}

.header-logo-svg .cls-12 {
    clip-path: url(#clippath-2);
}

.header-logo-svg .cls-13 {
    clip-path: url(#clippath-7);
}

.header-logo-svg .cls-14 {
    clip-path: url(#clippath-6);
}

.header-logo-svg .cls-15 {
    clip-path: url(#clippath-5);
}

.header-logo-svg .cls-18 {
    clip-path: url(#clippath);
}

/* ================================================
   FORM STYLES
   ================================================ */
.homepage-form input[type="email"]:focus,
.homepage-form input[type="text"]:focus {
    outline: none;
    ring: 0;
}

/* Checkbox custom styling */
.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
}

/* ================================================
   ANIMATION UTILITIES
   ================================================ */
.animate-swipe {
    animation: swipe 1s ease-in-out;
}

.animate-swipeDown {
    animation: swipeDown 1s ease-in-out;
}

@keyframes swipe {
    0% {
        transform: translateX(60px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes swipeDown {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ================================================
   ERROR PAGE STYLES (from index.php)
   ================================================ */
.error-page {
    text-align: center;
    padding: 100px 20px;
}

.error-code {
    font-size: 6rem;
    font-weight: 700;
    color: #cf5428;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.error-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #cf5428;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.error-link:hover {
    background-color: #b94620;
}

/* ================================================
   MASK IMAGE STYLES (from home.php)
   ================================================ */
.mask-image-3 {
    -webkit-mask-image: var(--mask-url);
    mask-image: var(--mask-url);
}

.mask-image-4 {
    -webkit-mask-image: var(--mask-url);
    mask-image: var(--mask-url);
}

@media (max-width: 640px) {
    .mask-image-3,
    .mask-image-4 {
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }
}

/* ================================================
   NORMA P. PREMIUM FOOTER
   ================================================ */

/* Footer Base */
.np-footer {
    background: #08080e;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.np-footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gold Line */
.np-footer-gold-line {
    height: 2px;
    background: linear-gradient(to right, transparent 0%, rgba(201, 169, 98, 0.8) 20%, #C9A962 50%, rgba(201, 169, 98, 0.8) 80%, transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    /* GSAP controls animation — no CSS transition */
}

/* Brand Zone */
.np-footer-brand {
    padding: 3rem 0 2rem;
    display: flex;
    align-items: center;
}

.np-footer-brand .np-footer-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.np-footer-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-decoration: none;
}

.np-footer-logo .footer-logo-img {
    height: 42px;
    width: auto;
}

.np-footer-slogan {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Main Grid */
.np-footer-main {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.np-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 3rem;
}

.np-footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem 0;
}

/* About Text */
.np-footer-about {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    max-width: 320px;
}

/* Social */
.np-footer-social {
    display: flex;
    gap: 0.75rem;
}

.np-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.np-footer-social a svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.np-footer-social a:hover {
    background: rgba(201, 169, 98, 0.15);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-2px);
}

.np-footer-social a:hover svg {
    color: #C9A962;
}

.np-footer-social a.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.np-footer-social a.whatsapp:hover svg {
    color: #25D366;
}

/* Links */
.np-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.np-footer-links li {
    margin-bottom: 0.85rem;
}

.np-footer-links li:last-child {
    margin-bottom: 0;
}

.np-footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.np-footer-links a:hover {
    color: #C9A962;
    padding-left: 6px;
}

/* Contact */
.np-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.np-footer-contact li {
    margin-bottom: 1rem;
}

.np-footer-contact li:last-child {
    margin-bottom: 0;
}

.np-footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.np-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.np-contact-icon svg {
    width: 16px;
    height: 16px;
    color: #C9A962;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.np-footer-contact a span:last-child {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    padding-top: 0.4rem;
    word-break: break-word;
    transition: color 0.3s ease;
}

.np-footer-contact a:hover .np-contact-icon {
    background: rgba(201, 169, 98, 0.15);
    border-color: rgba(201, 169, 98, 0.3);
}

.np-footer-contact a:hover span:last-child {
    color: #C9A962;
}

/* Bottom Bar */
.np-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
}

.np-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.np-footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.np-footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.np-footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
}

.np-footer-legal a:hover {
    color: #C9A962;
}

.np-footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .np-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .np-footer-brand .np-footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .np-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .np-footer-brand {
        padding: 2rem 0 1.5rem;
    }
    .np-footer-main {
        padding: 2rem 0;
    }
    .np-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .np-footer-legal {
        justify-content: center;
    }
}

/* ================================================
   FLEET SECTION — Unique Button
   ================================================ */
.fleet-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    background: transparent;
    color: #C9A962;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    position: relative;
    cursor: pointer;
    transition: color 0.4s ease;
}

.fleet-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #C9A962, rgba(201, 169, 98, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-btn:hover::after {
    transform: scaleX(1);
}

.fleet-btn:hover {
    color: #fff;
}

.fleet-btn-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.fleet-btn-arrow svg {
    color: #C9A962;
    transition: color 0.3s ease;
}

.fleet-btn:hover .fleet-btn-arrow {
    background: #C9A962;
    border-color: #C9A962;
    transform: translateX(6px);
}

.fleet-btn:hover .fleet-btn-arrow svg {
    color: #08080e;
}

/* Fleet section label decoration */
#tekneler .norma-section-label,
#boats .norma-section-label {
    position: relative;
    padding-left: 2rem;
}

#tekneler .norma-section-label::before,
#boats .norma-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 1px solid #C9A962;
    border-radius: 50%;
    transform: translateY(-50%);
}

#tekneler .norma-section-label::after,
#boats .norma-section-label::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #C9A962;
    border-radius: 50%;
    transform: translateY(-50%);
}

/* ================================================
   NORMA PRACTICE - LOGO STYLES
   ================================================ */

.norma-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Image logo for header */
.header-logo-img {
    height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Image logo for footer */
.footer-logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* ================================================
   PRODUCT CARD BRAND WATERMARK
   ================================================ */

.merch-card-brand,
.product-card-brand {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    opacity: 0.25;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.merch-card-brand img,
.product-card-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.merch-card:hover .merch-card-brand,
.product-card:hover .product-card-brand,
.related-product-card:hover .product-card-brand {
    opacity: 0.4;
}

@media (max-width: 640px) {
    .merch-card-brand,
    .product-card-brand {
        width: 24px;
        height: 24px;
        bottom: 8px;
        right: 8px;
    }
}

/* Hero full viewport - remove main-content padding for norma-hero */
.main-content:has(.norma-hero) {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ================================================
   NORMA PRACTICE - HERO SECTION (Modern Aesthetic Style)
   ================================================ */

.norma-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0a0f;
    padding: 20px;
    padding-top: 100px;
    width: 100%;
    height: 100vh;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Hero Card Container */
.norma-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: auto;
    max-height: none;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
    box-sizing: border-box;
}

/* Card Background Image */
.norma-card-assets {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.norma-card-assets img,
.norma-card-assets video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark Overlay for Text Readability - Left side darker */
.norma-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(10, 10, 15, 0.85) 0%,
        rgba(10, 10, 15, 0.6) 40%,
        rgba(10, 10, 15, 0.3) 70%,
        rgba(10, 10, 15, 0.15) 100%
    );
    pointer-events: none;
}

/* Card Content - Slightly Left of Center */
.norma-card-content {
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 50px 60px;
    max-width: 700px;
    text-align: left;
}

/* Modern Slide-in Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeftDelayed {
    0%, 20% {
        opacity: 0;
        transform: translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textReveal {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}

/* Label */
.norma-card-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9a962;
    margin-bottom: 16px;
    position: relative;
    background: linear-gradient(90deg, #c9a962, #e8d5a3, #c9a962);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Main Title - Modern Slide Animation */
.norma-card-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 0 60px rgba(201, 169, 98, 0.15);
    overflow: hidden;
    animation: slideInFromLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Outline effect for second line */
.norma-card-title .outline-text {
    display: inline;
    -webkit-text-stroke: unset;
    -webkit-text-fill-color: #fff;
    text-shadow: none;
    animation: slideInFromLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

/* Accent Title - Hidden */
.norma-card-title-accent {
    display: none;
}

/* Description - Slide animation */
.norma-card-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
    font-weight: 400;
    letter-spacing: 0.3px;
    animation: slideInFromLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

/* Features List */
.norma-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.norma-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    font-weight: 500;
}

.norma-card-features li svg {
    width: 16px;
    height: 16px;
    color: #c9a962;
    flex-shrink: 0;
}

/* CTA Buttons - Slightly offset from text */
.norma-card-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 15px;
    margin-bottom: 32px;
    animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

/* Remove unused elements */
.norma-card-blurs,
.norma-card-border,
.norma-card-location,
.norma-card-icon,
.norma-card-place {
    display: none;
}

/* Scroll Indicator */
.norma-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.norma-scroll-indicator span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.norma-scroll-indicator .scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.norma-scroll-indicator .scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(201, 169, 98, 0.8);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Hero CTA Buttons - Hidden */
.norma-hero-cta {
    display: none;
}

.norma-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.norma-btn-primary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.norma-btn-primary svg {
    width: 14px;
    height: 14px;
}

.norma-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all 0.25s ease;
}

.norma-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.norma-btn-secondary svg {
    width: 14px;
    height: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.norma-card {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
}

.norma-hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 1024px) {
    .norma-hero {
        padding: 15px;
        padding-top: 90px;
        height: 100vh;
    }

    .norma-card {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

    .norma-card-content {
        left: 10%;
        padding: 40px 50px;
        max-width: 520px;
    }

    .norma-card-title {
        font-size: clamp(36px, 5vw, 54px);
    }

    .norma-card-cta {
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .norma-hero {
        padding: 12px;
        padding-top: 85px;
        height: auto;
        min-height: 92vh;
    }

    .norma-card {
        width: 100%;
        height: 100%;
        min-height: 80vh;
        border-radius: 18px;
    }

    .norma-card-content {
        left: 6%;
        transform: translateY(-50%);
        padding: 30px 25px;
        max-width: 90%;
        text-align: left;
    }

    .norma-card-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .norma-card-label {
        font-size: 10px;
    }

    .norma-card-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .norma-card-features li {
        font-size: 12px;
    }

    .norma-card-cta {
        justify-content: flex-start;
        margin-left: 0;
    }

    .norma-btn-primary,
    .norma-btn-secondary {
        padding: 14px 28px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .norma-hero {
        padding: 10px;
        padding-top: 80px;
        height: auto;
        min-height: 90vh;
    }

    .norma-card {
        height: 100%;
        min-height: 78vh;
        border-radius: 16px;
    }

    .norma-card-content {
        padding: 28px 30px;
    }

    .norma-card-title {
        font-size: clamp(28px, 7vw, 40px);
    }

    .norma-card-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .norma-card-desc {
        font-size: 14px;
    }

    .norma-card-features li {
        font-size: 11px;
    }

    .norma-btn-primary,
    .norma-btn-secondary {
        padding: 12px 24px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .norma-hero {
        padding: 8px;
        padding-top: 70px;
        height: auto;
        min-height: 88vh;
    }

    .norma-card {
        width: 100%;
        border-radius: 14px;
        height: 100%;
        min-height: 76vh;
    }

    .norma-card-content {
        padding: 25px 20px;
    }

    .norma-card-title {
        font-size: clamp(24px, 8vw, 32px);
    }

    .norma-card-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .norma-card-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .norma-card-features {
        margin-bottom: 24px;
    }

    .norma-card-features li {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .norma-btn-primary,
    .norma-btn-secondary {
        padding: 12px 20px;
        font-size: 11px;
    }
}

/* ================================================
   NORMA PRACTICE - HERO ENHANCEMENTS (Arms Maritime Style)
   ================================================ */

/* Gold accent for title second line */
.norma-card-title .title-accent {
    color: #c9a962;
    display: block;
}

/* Feature list stagger animations */
.norma-hero .norma-card-features {
    animation: slideInFromLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
}

.norma-hero .norma-card-features li {
    opacity: 0;
    animation: fadeSlideUp 0.5s ease forwards;
}

.norma-hero .norma-card-features li:nth-child(1) { animation-delay: 1.0s; }
.norma-hero .norma-card-features li:nth-child(2) { animation-delay: 1.1s; }
.norma-hero .norma-card-features li:nth-child(3) { animation-delay: 1.2s; }

/* ================================================
   NORMA PRACTICE - ABOUT SECTION
   ================================================ */

.norma-about {
    background: linear-gradient(180deg, #0a0a0f 0%, #14141c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.norma-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.norma-about-image {
    position: relative;
}

.norma-about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.norma-about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.3) 0%, rgba(201, 169, 98, 0.1) 50%, rgba(201, 169, 98, 0.3) 100%);
    border-radius: 8px;
    z-index: 1;
}

.norma-about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

.norma-about-content {
    color: #fff;
}

.norma-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a962;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
}

.norma-about-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 1px;
}

.norma-about-title span {
    color: #c9a962;
}

.norma-about-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Stats */
.norma-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.norma-stat-item {
    text-align: center;
}

.norma-stat-number {
    font-size: 48px;
    font-weight: 200;
    color: #c9a962;
    line-height: 1;
    margin-bottom: 10px;
}

.norma-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================================
   NORMA PRACTICE - SERVICES SECTION
   ================================================ */

.norma-services {
    background: #0a0a0f;
    padding: 120px 0;
    position: relative;
}

.norma-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.norma-services-header {
    text-align: center;
    margin-bottom: 80px;
}

.norma-services-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 200;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.norma-services-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.norma-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.norma-service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 50px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.norma-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c9a962 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.norma-service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-5px);
}

.norma-service-card:hover::before {
    opacity: 1;
}

.norma-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(201, 169, 98, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.norma-service-icon svg {
    width: 28px;
    height: 28px;
    color: #c9a962;
}

.norma-service-card:hover .norma-service-icon {
    background: rgba(201, 169, 98, 0.2);
}

.norma-service-title {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.norma-service-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
}

.norma-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #c9a962;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.norma-service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.norma-service-link:hover {
    color: #d4af37;
}

.norma-service-link:hover svg {
    transform: translateX(4px);
}

/* ================================================
   NORMA PRACTICE - RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .norma-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .norma-about-image {
        order: 2;
    }

    .norma-about-content {
        order: 1;
    }

    .norma-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .norma-hero-title {
        letter-spacing: 4px;
    }

    .norma-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .norma-btn-primary,
    .norma-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .norma-about {
        padding: 80px 0;
    }

    .norma-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .norma-stat-number {
        font-size: 32px;
    }

    .norma-services {
        padding: 80px 0;
    }

    .norma-service-card {
        padding: 30px;
    }

    .header-logo-img {
        height: 30px;
    }
}

@media (max-width: 640px) {
    .norma-hero-title {
        letter-spacing: 2px;
    }

    .norma-hero-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .norma-about {
        padding: 60px 0;
    }

    .norma-about-container {
        padding: 0 20px;
        gap: 40px;
    }

    .norma-about-title {
        font-size: clamp(24px, 6vw, 32px);
    }

    .norma-about-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .norma-section-label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .norma-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .norma-stat-item:last-child {
        grid-column: span 2;
    }

    .norma-stat-number {
        font-size: 28px;
    }

    .norma-stat-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .norma-services {
        padding: 60px 0;
    }

    .norma-services-container {
        padding: 0 20px;
    }

    .norma-services-header {
        margin-bottom: 50px;
    }

}

@media (max-width: 480px) {
    .norma-hero-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .norma-hero-subtitle {
        font-size: 15px;
    }

    .norma-scroll-indicator {
        display: none;
    }

    .norma-about-container {
        padding: 0 15px;
    }

    .norma-about-title {
        font-size: clamp(22px, 5.5vw, 28px);
    }

    .norma-stat-number {
        font-size: 28px;
    }

    .norma-services-container {
        padding: 0 15px;
    }

}

/* ================================================
   NORMA PRACTICE - SERVICES SLIDER
   ================================================ */

.norma-slider-section {
    background: #0a0a0f;
    padding: 80px 80px;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.norma-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.norma-slider-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.norma-slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.norma-slider-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 200;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.norma-slider-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Wrapper */
.norma-slider-wrapper {
    position: relative;
    padding: 0 60px;
    overflow: visible;
    box-sizing: border-box;
}

/* Slider Track */
.norma-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    justify-content: center;
    position: relative;
}

.norma-slider-track:active {
    cursor: grabbing;
}

/* Slider Cards */
.norma-slider-card {
    flex: 0 0 280px;
    min-width: 280px;
    height: 380px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 20, 28, 0.9) 0%, rgba(10, 10, 15, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: flex 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                min-width 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.5s ease;
    cursor: pointer;
}

.norma-slider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 70%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.norma-slider-card.expanded {
    flex: 0 0 420px;
    min-width: 420px;
}

.norma-slider-card.expanded::before {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.8) 50%);
}

/* Card Image */
.norma-slider-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.norma-slider-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.norma-slider-card:hover .norma-slider-card-image img {
    transform: scale(1.05);
}

/* Card Content */
.norma-slider-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-sizing: border-box;
}

/* Card Number */
.norma-slider-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.2);
    border: 1px solid rgba(201, 169, 98, 0.3);
    font-size: 14px;
    font-weight: 600;
    color: #c9a962;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.norma-slider-card.expanded .norma-slider-card-number {
    background: #c9a962;
    color: #0a0a0f;
}

/* Card Title */
.norma-slider-card-title {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.norma-slider-card.expanded .norma-slider-card-title {
    font-size: 24px;
    margin-bottom: 16px;
    -webkit-line-clamp: 3;
}

/* Card Description */
.norma-slider-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease 0.1s,
                margin 0.5s ease;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.norma-slider-card.expanded .norma-slider-card-desc {
    max-height: 150px;
    opacity: 1;
    margin-bottom: 20px;
}

/* Card Link */
.norma-slider-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #c9a962;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease 0.2s,
                transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
                color 0.3s ease;
}

.norma-slider-card.expanded .norma-slider-card-link {
    opacity: 1;
    transform: translateY(0);
}

.norma-slider-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.norma-slider-card-link:hover {
    color: #d4af37;
}

.norma-slider-card-link:hover svg {
    transform: translateX(4px);
}

/* Card Expand Icon */
.norma-slider-card-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: all 0.3s ease;
}

.norma-slider-card-expand svg {
    width: 16px;
    height: 16px;
    color: #fff;
    transition: transform 0.3s ease;
}

.norma-slider-card:hover .norma-slider-card-expand {
    background: rgba(201, 169, 98, 0.3);
}

.norma-slider-card.expanded .norma-slider-card-expand svg {
    transform: rotate(45deg);
}

/* Slider Navigation */
.norma-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 10, 15, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    transition: all 0.3s ease;
}

.norma-slider-nav svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.norma-slider-nav:hover {
    background: rgba(201, 169, 98, 0.2);
    border-color: rgba(201, 169, 98, 0.4);
}

.norma-slider-nav:hover svg {
    color: #c9a962;
}

.norma-slider-nav.disabled {
    opacity: 0.3;
    pointer-events: none;
}

.norma-slider-prev {
    left: 10px;
}

.norma-slider-next {
    right: 10px;
}

/* Slider Dots */
.norma-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.norma-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.norma-slider-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.norma-slider-dot.active {
    background: #c9a962;
    transform: scale(1.2);
}

/* Slider Progress */
.norma-slider-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.norma-slider-progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.norma-slider-progress-fill {
    height: 100%;
    background: #c9a962;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.norma-slider-progress-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.norma-slider-progress-text span {
    color: #c9a962;
    font-weight: 600;
}

/* Slider Responsive */
@media (max-width: 1400px) {
    .norma-slider-section {
        padding: 80px 30px;
    }

    .norma-slider-wrapper {
        padding: 0 40px;
    }

    .norma-slider-card {
        flex: 0 0 240px;
        min-width: 240px;
        height: 350px;
    }

    .norma-slider-card.expanded {
        flex: 0 0 340px;
        min-width: 340px;
    }
}

@media (max-width: 1200px) {
    .norma-slider-section {
        padding: 70px 0;
        overflow: visible;
    }

    .norma-slider-container {
        padding: 0;
        overflow: visible;
    }

    .norma-slider-wrapper {
        padding: 0;
        overflow: visible;
    }

    .norma-slider-nav {
        display: none;
    }

    .norma-slider-track {
        padding: 0 30px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
    }

    .norma-slider-track::-webkit-scrollbar {
        display: none;
    }

    .norma-slider-card {
        flex: 0 0 220px;
        min-width: 220px;
        height: 340px;
        scroll-snap-align: center;
    }

    .norma-slider-card.expanded {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .norma-slider-card-title {
        font-size: 17px;
    }

    .norma-slider-card.expanded .norma-slider-card-title {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .norma-slider-section {
        padding: 70px 0;
        overflow: visible;
    }

    .norma-slider-container {
        padding: 0;
        overflow: visible;
    }

    .norma-slider-wrapper {
        padding: 0;
        overflow: visible;
    }

    .norma-slider-nav {
        display: none;
    }

    .norma-slider-track {
        padding: 0 30px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
    }

    .norma-slider-track::-webkit-scrollbar {
        display: none;
    }

    .norma-slider-card {
        flex: 0 0 240px;
        min-width: 240px;
        height: 340px;
        scroll-snap-align: center;
    }

    .norma-slider-card.expanded {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .norma-slider-card-content {
        padding: 24px;
    }

    .norma-slider-card-title {
        font-size: 17px;
    }

    .norma-slider-card.expanded .norma-slider-card-title {
        font-size: 20px;
    }

    .norma-slider-card-desc {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 768px) {
    .norma-slider-section {
        padding: 60px 0;
    }

    .norma-slider-container {
        padding: 0 15px;
    }

    .norma-slider-header {
        margin-bottom: 25px;
    }

    .norma-slider-track {
        padding: 0 15px;
        justify-content: flex-start;
        gap: 15px;
    }

    .norma-slider-card {
        flex: 0 0 230px;
        min-width: 230px;
        height: 320px;
    }

    .norma-slider-card.expanded {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .norma-slider-card-content {
        padding: 20px;
    }

    .norma-slider-card-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .norma-slider-card-title {
        font-size: 16px;
        -webkit-line-clamp: 2;
        margin-bottom: 10px;
    }

    .norma-slider-card.expanded .norma-slider-card-title {
        font-size: 18px;
    }

    .norma-slider-card-desc {
        font-size: 12px;
        -webkit-line-clamp: 3;
        line-height: 1.6;
    }

    .norma-slider-card.expanded .norma-slider-card-desc {
        max-height: 80px;
        margin-bottom: 15px;
    }

    .norma-slider-card-link {
        font-size: 11px;
    }

    .norma-slider-dots {
        margin-top: 20px;
        gap: 8px;
    }

    .norma-slider-progress {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .norma-slider-section {
        padding: 50px 0;
    }

    .norma-slider-container {
        padding: 0 12px;
    }

    .norma-slider-header {
        margin-bottom: 20px;
    }

    .norma-slider-title {
        font-size: clamp(22px, 5vw, 28px);
    }

    .norma-slider-subtitle {
        font-size: 13px;
    }

    .norma-slider-track {
        padding: 0 12px;
        gap: 12px;
    }

    .norma-slider-card {
        flex: 0 0 220px;
        min-width: 220px;
        height: 300px;
    }

    .norma-slider-card.expanded {
        flex: 0 0 250px;
        min-width: 250px;
    }

    .norma-slider-card-content {
        padding: 18px;
    }

    .norma-slider-card-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
        margin-bottom: 10px;
    }

    .norma-slider-card-title {
        font-size: 15px;
        -webkit-line-clamp: 2;
        margin-bottom: 8px;
    }

    .norma-slider-card.expanded .norma-slider-card-title {
        font-size: 16px;
    }

    .norma-slider-card-desc {
        font-size: 11px;
        -webkit-line-clamp: 2;
        line-height: 1.5;
    }

    .norma-slider-card.expanded .norma-slider-card-desc {
        max-height: 60px;
        margin-bottom: 12px;
    }

    .norma-slider-card-link {
        font-size: 10px;
        gap: 5px;
    }

    .norma-slider-card-link svg {
        width: 12px;
        height: 12px;
    }

    .norma-slider-dots {
        margin-top: 18px;
        gap: 6px;
    }

    .norma-slider-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .norma-slider-section {
        padding: 35px 0;
    }

    .norma-slider-container {
        padding: 0 10px;
    }

    .norma-slider-header {
        margin-bottom: 18px;
    }

    .norma-slider-title {
        font-size: clamp(20px, 5vw, 24px);
    }

    .norma-slider-subtitle {
        font-size: 12px;
    }

    .norma-slider-track {
        padding: 0 10px;
        gap: 10px;
    }

    .norma-slider-card {
        flex: 0 0 200px;
        min-width: 200px;
        height: 280px;
    }

    .norma-slider-card.expanded {
        flex: 0 0 220px;
        min-width: 220px;
    }

    .norma-slider-card-content {
        padding: 15px;
    }

    .norma-slider-card-number {
        width: 26px;
        height: 26px;
        font-size: 10px;
        margin-bottom: 8px;
    }

    .norma-slider-card-title {
        font-size: 14px;
        -webkit-line-clamp: 2;
        margin-bottom: 6px;
    }

    .norma-slider-card.expanded .norma-slider-card-title {
        font-size: 15px;
    }

    .norma-slider-card-desc {
        font-size: 10px;
        -webkit-line-clamp: 2;
        line-height: 1.4;
    }

    .norma-slider-card.expanded .norma-slider-card-desc {
        max-height: 50px;
        margin-bottom: 10px;
    }

    .norma-slider-card-link {
        font-size: 9px;
        gap: 4px;
    }

    .norma-slider-card-link svg {
        width: 10px;
        height: 10px;
    }

    .norma-slider-dots {
        margin-top: 15px;
        gap: 6px;
    }

    .norma-slider-dot {
        width: 6px;
        height: 6px;
    }

    .norma-slider-progress {
        display: none;
    }
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */

/* Base reveal states - elements start hidden */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
}

/* Fade Up */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Down */
.reveal-down {
    opacity: 0;
    transform: translateY(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-down.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right */
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up */
.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Rotate In */
.reveal-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-rotate.active {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Blur In */
.reveal-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Stagger delays for child elements */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.6s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.7s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.8s; }

/* Custom delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* Hero specific animations */
.hero-animate .norma-card-label {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.hero-animate .norma-card-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-animate .norma-card-title-accent {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.hero-animate .norma-card-desc {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.hero-animate .norma-card-features {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}

.hero-animate .norma-card-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.hero-animate.active .norma-card-label,
.hero-animate.active .norma-card-title,
.hero-animate.active .norma-card-title-accent,
.hero-animate.active .norma-card-desc,
.hero-animate.active .norma-card-features,
.hero-animate.active .norma-card-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Stats counter animation */
.stat-animate .norma-stat-number {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-animate .norma-stat-label {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.2s;
}

.stat-animate.active .norma-stat-number {
    opacity: 1;
    transform: scale(1);
}

.stat-animate.active .norma-stat-label {
    opacity: 1;
    transform: translateY(0);
}

/* Footer reveal */
.footer-reveal .footer-col {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-reveal .footer-col:nth-child(1) { transition-delay: 0.1s; }
.footer-reveal .footer-col:nth-child(2) { transition-delay: 0.2s; }
.footer-reveal .footer-col:nth-child(3) { transition-delay: 0.3s; }

.footer-reveal.active .footer-col {
    opacity: 1;
    transform: translateY(0);
}

/* Slider card reveal */
.slider-reveal .norma-slider-card {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-reveal .norma-slider-card:nth-child(1) { transition-delay: 0.1s; }
.slider-reveal .norma-slider-card:nth-child(2) { transition-delay: 0.2s; }
.slider-reveal .norma-slider-card:nth-child(3) { transition-delay: 0.3s; }
.slider-reveal .norma-slider-card:nth-child(4) { transition-delay: 0.4s; }
.slider-reveal .norma-slider-card:nth-child(5) { transition-delay: 0.5s; }

.slider-reveal.active .norma-slider-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-up,
    .reveal-down,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-rotate,
    .reveal-blur,
    .hero-animate *,
    .stat-animate *,
    .footer-reveal *,
    .slider-reveal * {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }
}

/* ================================================
   404 PAGE STYLES
   ================================================ */

/* Override main-content spacing for 404 */
.main-content:has(.norma-404) {
    margin-top: 0;
    padding-top: 0;
}

.norma-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
    padding: 20px;
    margin-top: -190px;
    padding-top: 190px;
}

.norma-404-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
}

/* Animated Wave Background */
.norma-404-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.norma-404-wave {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.03) 0%, transparent 70%);
    border-radius: 45%;
    transform: translateX(-50%);
    animation: wave404 15s infinite linear;
}

.norma-404-wave:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.5;
}

.norma-404-wave:nth-child(3) {
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes wave404 {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* Content */
.norma-404-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Compass Icon */
.norma-404-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    animation: compassSpin 20s infinite linear;
}

.norma-404-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes compassSpin {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* 404 Number */
.norma-404-number {
    font-size: clamp(100px, 20vw, 180px);
    font-weight: 800;
    letter-spacing: -5px;
    margin: 0 0 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.norma-404-number span {
    display: inline-block;
    background: linear-gradient(180deg, #C9A962 0%, #8B7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float404 3s ease-in-out infinite;
}

.norma-404-number span:nth-child(1) {
    animation-delay: 0s;
}

.norma-404-number span.zero {
    animation-delay: 0.2s;
    opacity: 0.6;
}

.norma-404-number span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes float404 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Title */
.norma-404-title {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: 1px;
}

/* Description */
.norma-404-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0 0 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Buttons */
.norma-404-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.norma-404 .norma-btn-primary,
.norma-404 .norma-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.norma-404 .norma-btn-primary {
    background: linear-gradient(135deg, #C9A962 0%, #8B7355 100%);
    color: #0a0a0f;
}

.norma-404 .norma-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.norma-404 .norma-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.norma-404 .norma-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-3px);
}

/* Quick Links */
.norma-404-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.norma-404-links span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.norma-404-links a {
    color: #C9A962;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.norma-404-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A962;
    transition: width 0.3s ease;
}

.norma-404-links a:hover {
    color: #fff;
}

.norma-404-links a:hover::after {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .norma-404 {
        padding: 20px;
        margin-top: -90px;
        padding-top: 110px;
    }

    .norma-404-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .norma-404-number {
        letter-spacing: -3px;
        gap: 5px;
    }

    .norma-404-title {
        font-size: 24px;
    }

    .norma-404-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .norma-404 .norma-btn-primary,
    .norma-404 .norma-btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }

    .norma-404-links {
        flex-direction: column;
        gap: 10px;
    }

    .norma-404-links span {
        margin-bottom: 5px;
    }
}
