@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    background: #f4f6f9;
    /* Modern light gray for internal pages */
    overflow-x: hidden;
}

body.home-page {
    background: url('../images/home-bg-new.jpg') no-repeat center center fixed;
    background-size: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Sidebar Navigation */
/* Hide old sidebar when ALD style is active */
body.ald-style .sidebar {
    display: none !important;
}

body.ald-style .main-content {
    margin-left: 0 !important;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 240px;
    background: rgba(255, 255, 255, 0.7);
    /* More opaque for internal pages */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border for light mode */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);

    display: flex;
    flex-direction: column;
    padding: 20px 0;
    z-index: 1000;
    transition: width 0.3s ease;
    overflow-x: hidden;
    white-space: nowrap;
}

/* Home Page Specific Overrides */
body.home-page .sidebar {
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar.collapsed {
    width: 80px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
}

.sidebar.collapsed .logo {
    justify-content: center;
    padding: 0;
}

.logo-text {
    display: block;
    transition: opacity 0.2s;
}

.sidebar.collapsed .logo-text {
    display: none;
}

.toggle-btn {
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: transform 0.3s;
}

.sidebar.collapsed .toggle-btn {
    margin: 0;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    flex: 1;
    width: 100%;
}

.nav-links li {
    width: 100%;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    padding: 15px 24px;
    gap: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000;
    background: rgba(0, 0, 0, 0.03);
    border-right: 3px solid #000;
}

.nav-links i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.link-text {
    display: block;
    opacity: 1;
    transition: opacity 0.2s;
}

.sidebar.collapsed .link-text {
    display: none;
}

/* Menu Headers (Management) */
.menu-header {
    margin-top: 20px;
    padding: 10px 24px;
    color: #999;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.header-icon {
    display: none;
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: #ccc;
    margin-top: 10px;
}

.sidebar.collapsed .menu-header .link-text {
    display: none;
}

.sidebar.collapsed .menu-header {
    padding: 10px 0;
    text-align: center;
}

.sidebar.collapsed .header-icon {
    display: block;
}

/* Main Content Adjustment */
.main-content {
    margin-left: 240px;
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed~.main-content {
    margin-left: 80px;
}


/* Internal Pages Layout */
.content-wrapper {
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section (Home) */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 100px;
    font-weight: 200;
    letter-spacing: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeInUp 1.2s ease;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666;
    animation: fadeInUp 1.2s ease 0.3s both;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: #1a1a1a;
    margin: 30px auto;
    animation: expandWidth 1s ease 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

/* Cards & Forms (Adapted for Light Theme) */
.card {
    background: rgba(255, 255, 255, 0.05);
    /* Transparent Glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-header {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 24px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    color: #1a1a1a;
    transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
}

button,
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid #1a1a1a;
    transition: all 0.4s;
    cursor: pointer;
}

button:hover,
.btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 10px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    text-align: left;
    padding: 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    border-bottom: 1px solid #eee;
}

td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    letter-spacing: 1px;
}

.status-badge {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 8px;
    border: 1px solid #ddd;
}

.status-badge.completed,
.status-badge.paid,
.status-badge.final {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.status-badge.pending {
    border-color: #ccc;
    color: #999;
}

/* Login Specific */
.login-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.login-box {
    background: #fff;
    padding: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    width: 450px;
    text-align: center;
}

.login-logo {
    font-size: 32px;
    font-weight: 200;
    letter-spacing: 8px;
    margin-bottom: 40px;
}

.login-logo span {
    font-weight: 400;
}

/* Catalog Specific Styles */
.catalog-header {
    padding: 80px 80px 40px;
    text-align: center;
}

.breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 30px;
}

.catalog-title {
    font-size: 72px;
    font-weight: 200;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.catalog-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #666;
    text-transform: uppercase;
}

.filter-bar {
    padding: 40px 80px;
    background: rgba(255, 255, 255, 0.05);
    /* Transparent Glass */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.filter-left {
    display: flex;
    gap: 40px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    /* Transparent Glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    color: rgba(0, 0, 0, 0.8);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: left 0.3s;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: #fff;
    border-color: rgba(0, 0, 0, 0.8);
}

.sort-select {
    background: rgba(255, 255, 255, 0.05);
    /* Transparent Glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.8);
    font-family: inherit;
    width: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.products {
    padding: 0 80px 120px;
    max-width: 1600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    /* Transparent Glass */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.15);
    /* Slightly less transparent on hover */
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: rgba(255, 255, 255, 0.05);
    /* Transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 200;
    letter-spacing: 8px;
    color: rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-info {
    padding: 30px;
    text-align: left;
}

.product-category {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 12px;
}

.product-name {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.product-description {
    font-size: 12px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

.product-colors {
    display: flex;
    gap: 8px;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.color-dot:hover {
    transform: scale(1.2);
}

.color-black {
    background: #1a1a1a;
}

.color-white {
    background: #fff;
}

.color-gray {
    background: #999;
}

.color-beige {
    background: #d4c5b0;
}

.color-navy {
    background: #1e3a5f;
}

.load-more {
    text-align: center;
    margin-top: 80px;
    padding-bottom: 60px;
}

.load-more-btn {
    display: inline-block;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.05);
    /* Transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: left 0.4s;
    z-index: -1;
}

.load-more-btn:hover::before {
    left: 0;
}

.load-more-btn:hover {
    color: #fff;
    border-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 968px) {
    .catalog-title {
        font-size: 52px;
        letter-spacing: 8px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 60px;
    }

    .main-content {
        margin-left: 60px;
    }

    .content-wrapper {
        padding: 20px;
    }

    .hero-title {
        font-size: 48px;
    }

    .catalog-header {
        padding: 60px 40px 30px;
    }

    .catalog-title {
        font-size: 42px;
        letter-spacing: 6px;
    }

    .filter-bar {
        padding: 25px 40px;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .filter-left {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .products {
        padding: 0 40px 80px;
    }
}

/* =====================================================
   AIMÉ LEON DORE INSPIRED DESIGN SYSTEM
   ===================================================== */

/* Base styles for ALD design */
body.ald-style {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f8f6;
    color: #1a1a1a;
    overflow-x: hidden;
}

body.ald-style.home-page {
    background: url('../images/home-bg-new.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* =====================================================
   ALD HEADER
   ===================================================== */
.ald-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: all 0.3s ease;
}

.ald-header--home {
    background: transparent;
}

/* Glassy effect for homepage header */
.ald-header--home.ald-header--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Homepage header layout */
.ald-header__home-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    position: relative;
}

.ald-header__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ald-header__center .ald-header__logo {
    position: static;
    transform: none;
}

.ald-header__center .ald-logo-text {
    font-size: 32px;
    letter-spacing: 10px;
}

.ald-header__location {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.ald-header--home .ald-logo-text,
.ald-header--home .ald-header__action {
    color: #fff;
}

.ald-header--home .ald-hamburger span {
    background-color: #fff;
}

.ald-header--home .ald-ticker__text {
    color: rgba(255,255,255,0.8);
}

/* Ticker Bar */
.ald-ticker {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ald-header--home .ald-ticker {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ald-ticker__text {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
    font-weight: 400;
}

/* Main Header */
.ald-header__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    position: relative;
}

/* Menu Button */
.ald-header__menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.ald-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.ald-hamburger span {
    display: block;
    height: 1.5px;
    width: 100%;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

/* Logo */
.ald-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
}

.ald-logo-text {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 6px;
    color: #1a1a1a;
    text-transform: uppercase;
}

/* Header Actions */
.ald-header__actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ald-header__action {
    font-size: 18px;
    color: #1a1a1a;
    transition: opacity 0.2s;
    padding: 5px;
}

.ald-header__action:hover {
    opacity: 0.6;
}

/* =====================================================
   ALD NAVIGATION (Slide-out)
   ===================================================== */
.ald-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.ald-nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.ald-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.ald-nav.is-open {
    transform: translateX(0);
}

.ald-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.ald-nav__title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    font-weight: 400;
}

.ald-nav__close {
    background: none;
    border: none;
    font-size: 18px;
    color: #1a1a1a;
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.2s;
}

.ald-nav__close:hover {
    opacity: 0.5;
}

.ald-nav__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    overflow-y: auto;
}

.ald-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ald-nav__item {
    margin: 0;
}

.ald-nav__link {
    display: block;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.ald-nav__link:hover,
.ald-nav__link.active {
    background: #f8f8f6;
    color: #1a1a1a;
}

.ald-nav__link.active {
    font-weight: 500;
}

.ald-nav__divider {
    height: 1px;
    background: #eee;
    margin: 20px 30px;
}

.ald-nav__section-title {
    padding: 10px 30px 15px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
}

.ald-nav__footer {
    margin-top: auto;
    padding: 20px 30px;
    border-top: 1px solid #eee;
}

.ald-nav__footer-link {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.ald-nav__footer-link:hover {
    color: #1a1a1a;
}

/* =====================================================
   ALD MAIN CONTENT
   ===================================================== */
.ald-main {
    min-height: 100vh;
}

.ald-main--page {
    padding-top: 90px;
}

.ald-main--page .content-wrapper {
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* =====================================================
   ALD HERO SECTION
   ===================================================== */
.ald-hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.ald-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home-bg-new.jpg') no-repeat center center;
    background-size: cover;
}

.ald-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.ald-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding-top: 80px;
}

.ald-hero__center {
    margin-bottom: 60px;
}

.ald-hero__title {
    font-size: 120px;
    font-weight: 300;
    letter-spacing: 30px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    animation: aldFadeIn 1s ease forwards;
    opacity: 0;
}

.ald-hero__tagline {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    font-weight: 400;
    animation: aldFadeIn 1s ease 0.2s forwards;
    opacity: 0;
}

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

.ald-hero__actions {
    display: flex;
    gap: 20px;
    animation: aldFadeIn 1s ease 0.4s forwards;
    opacity: 0;
}

.ald-hero__btn {
    padding: 14px 35px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.ald-hero__btn--primary {
    background: #fff;
    color: #1a1a1a;
}

.ald-hero__btn--primary:hover {
    background: #1a1a1a;
    color: #fff;
}

.ald-hero__btn--secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.ald-hero__btn--secondary:hover {
    background: #fff;
    color: #1a1a1a;
    border-color: #fff;
}

/* Scroll Indicator */
.ald-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: aldFadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

.ald-hero__scroll span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    animation: aldScroll 2s ease infinite;
}

@keyframes aldScroll {
    0% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.5);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* =====================================================
   ALD PROCESS SECTION
   ===================================================== */
.ald-process {
    padding: 120px 60px;
    background: #fff;
    text-align: center;
}

.ald-process__header {
    margin-bottom: 80px;
}

.ald-process__label {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    font-weight: 400;
}

.ald-process__title {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0;
}

.ald-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.ald-process__num {
    display: block;
    font-size: 48px;
    font-weight: 200;
    color: #ddd;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.ald-process__name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 15px;
}

.ald-process__desc {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    font-weight: 400;
}

/* =====================================================
   ALD FOOTER
   ===================================================== */
.ald-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
}

.ald-footer__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ald-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ald-footer__logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #fff;
}

.ald-footer__tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.ald-footer__nav {
    display: flex;
    gap: 30px;
}

.ald-footer__link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.ald-footer__link:hover {
    color: #fff;
}

.ald-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    text-align: center;
}

.ald-footer__bottom span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

/* =====================================================
   ALD RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .ald-hero__title {
        font-size: 60px;
        letter-spacing: 15px;
    }

    .ald-hero__tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .ald-hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .ald-hero__btn {
        padding: 12px 30px;
    }

    .ald-process {
        padding: 80px 30px;
    }

    .ald-process__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ald-process__title {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .ald-footer__content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .ald-footer__brand {
        align-items: center;
    }

    .ald-main--page .content-wrapper {
        padding: 30px 20px;
    }

    .ald-nav {
        width: 100%;
    }

    .ald-header__home-top {
        padding: 15px 20px;
    }

    .ald-header__center .ald-logo-text {
        font-size: 26px;
        letter-spacing: 6px;
    }

    .ald-header__location {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .ald-hero__title {
        font-size: 48px;
        letter-spacing: 10px;
    }

    .ald-header__main {
        padding: 12px 15px;
    }

    .ald-logo-text {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .ald-header__home-top {
        padding: 12px 15px;
    }

    .ald-header__center .ald-logo-text {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .ald-header__location {
        font-size: 8px;
    }
}