/* Premium Styles for Deebro Collection */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-font: 'Montserrat', sans-serif;
    --secondary-font: 'Playfair Display', serif;
    --body-color: #000000;
    --background-color: #ffffff;
    --accent-color: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #000000;
    --border-color: rgba(0, 0, 0, 0.1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.12);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
    100% { left: 150%; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

body {
    font-family: var(--primary-font);
    font-weight: 400;
    line-height: 1.7;
    color: var(--body-color);
    background-color: var(--background-color);
    font-size: 16px;
    letter-spacing: 0.2px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-medium);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
.site-header {
    width: 100%;
    position: relative;
}

/* Announcement Bar */
.header-announcement {
    background-color: var(--body-color);
    color: var(--text-light);
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.header-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.announcement-wrapper {
    position: relative;
    display: inline-block;
}

.highlight {
    color: #ff0000;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 0 2px;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ff0000;
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.header-announcement:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Main Header */
.header-main {
    padding: 25px 0 15px;
    background-color: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-subtle);
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
    border-bottom: 1px solid var(--border-color);
}

.header-main.scrolled {
    padding: 15px 0 10px;
    box-shadow: var(--shadow-medium);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

/* Logo */
.logo {
    flex: 0 0 auto;
    position: relative;
    transition: var(--transition-medium);
}

.logo-link {
    display: block;
    position: relative;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--body-color);
    transform: translateX(-50%) scaleX(0);
    transition: var(--transition-medium);
}

.logo-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.logo-img {
    height: 40px;
    transition: var(--transition-medium);
}

.scrolled .logo-img {
    height: 35px;
}

/* Search */
.search-container {
    flex: 0 1 400px;
    margin: 0 20px;
    position: relative;
}

.search-form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.search-form:focus-within {
    border-color: var(--body-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-family: var(--primary-font);
    font-size: 14px;
    background-color: transparent;
    transition: var(--transition-medium);
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
    transition: var(--transition-medium);
}

.search-input:focus {
    outline: none;
}

.search-input:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
}

.search-button {
    background-color: var(--body-color);
    color: var(--text-light);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition-medium);
    font-size: 14px;
}

.search-button:hover {
    background-color: #333;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    color: var(--body-color);
    position: relative;
    transition: var(--transition-medium);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    transition: var(--transition-medium);
    position: relative;
}

.icon-text {
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
    transition: var(--transition-medium);
    opacity: 0.8;
}

.icon-link:hover .icon-circle {
    background-color: var(--body-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.icon-link:hover .icon-text {
    opacity: 1;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: var(--text-light);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition-medium);
    transform: scale(1);
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.3);
}

.cart-icon:hover .cart-count {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

/* Navigation */
.main-navigation {
    margin-bottom: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 10px;
}

.nav-item {
    margin: 0 25px;
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--body-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    font-weight: 600;
}

/* Header Slogan / Banner */
.header-slogan {
    padding: 0;
    position: relative;
    background-color: var(--accent-color);
    overflow: hidden;
}

.slogan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.slogan-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.slogan-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.8) 50%, rgba(245, 245, 245, 0) 100%);
    z-index: -1;
}

.slogan-text-container {
    max-width: 580px;
    padding-right: 80px;
    padding-left: 60px;
    animation: fadeIn 1.5s ease-out;
    position: relative;
}

.slogan-text-container::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, var(--body-color), transparent);
    left: 0;
    top: 15%;
}

.tagline {
    display: inline-block;
    font-family: var(--secondary-font);
    font-style: italic;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 1px;
}

.tagline::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    top: 50%;
    right: -60px;
}

.tagline::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    bottom: -12px;
    left: 0;
}

.slogan-title {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 0px rgba(255, 255, 255, 0.5);
}

.slogan-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    color: transparent;
}

.slogan-subtitle {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: var(--secondary-font);
    opacity: 0.85;
    position: relative;
    display: inline-block;
}

.slogan-subtitle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.15), transparent);
    bottom: -10px;
    left: 0;
}

.slogan-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.7);
    max-width: 90%;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.slogan-text::first-letter {
    font-size: 2em;
    font-weight: 500;
    font-family: var(--secondary-font);
    line-height: 0;
}

.btn-group {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    position: relative;
}

.btn-group::before {
    content: '';
    position: absolute;
    width: 30%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    top: -30px;
    left: 0;
}

.btn-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--body-color);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--body-color);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 0;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #333;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--text-light);
    border-color: #333;
}

.btn-primary:hover::before {
    height: 100%;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 36px;
    background-color: transparent;
    color: var(--body-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--body-color);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--body-color);
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover::before {
    height: 100%;
}

/* Luxury element */
.luxury-element {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

.luxury-element::before,
.luxury-element::after {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.05);
}

.luxury-element::before {
    width: 1px;
    height: 120px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.luxury-element::after {
    width: 120px;
    height: 1px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Video Section */
.slogan-video {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: var(--transition-slow);
    filter: brightness(1.03) contrast(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, rgba(245, 245, 245, 0.8) 10%, rgba(245, 245, 245, 0) 50%);
    z-index: 4;
    pointer-events: none;
}

.corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 5;
    border-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.corner-accent-tl {
    top: 30px;
    left: 30px;
    border-left: 1px solid;
    border-top: 1px solid;
}

.corner-accent-tr {
    top: 30px;
    right: 30px;
    border-right: 1px solid;
    border-top: 1px solid;
}

.corner-accent-bl {
    bottom: 30px;
    left: 30px;
    border-left: 1px solid;
    border-bottom: 1px solid;
}

.corner-accent-br {
    bottom: 30px;
    right: 30px;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

/* AOS Data Attributes Simulation */
[data-aos="fade-right"] {
    animation: fadeIn 1s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-aos="fade-left"] {
    animation: fadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s both;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, border 0.3s;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--body-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    transition: transform 0.1s;
}

.cursor-expanded {
    width: 50px;
    height: 50px;
    border: 1px solid var(--body-color);
    background-color: rgba(0, 0, 0, 0.05);
    mix-blend-mode: normal;
}

/* Additional Animations */
@keyframes wiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse-animation 0.5s cubic-bezier(.17,.67,.83,.67);
}

.wiggle {
    animation: wiggle 0.5s ease;
}

/* Announcement Bar Animation */
.header-announcement.appear {
    animation: slideDown 0.5s ease-out forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.announcement-hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Page Loaded Animation */
.page-loaded .site-header {
    opacity: 1;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Search Form Animation */
.search-form.focused {
    border-color: var(--body-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.search-form.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* Luxury Loader */
.luxury-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.loader-logo {
    position: relative;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateLoader 3s infinite linear, pulseLoader 2s infinite alternate;
}

.loader-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: pulseOutLoader 2s infinite alternate;
}

.loader-logo span {
    font-family: var(--secondary-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--body-color);
    animation: fadeLoader 2s infinite alternate;
}

@keyframes rotateLoader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLoader {
    0% { transform: scale(0.95); }
    100% { transform: scale(1.05); }
}

@keyframes pulseOutLoader {
    0% { transform: scale(0.9); }
    100% { transform: scale(1.1); }
}

@keyframes fadeLoader {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .slogan-title {
        font-size: 48px;
    }
    
    .slogan-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .slogan-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .slogan-content, .slogan-video {
        grid-column: 1;
    }
    
    .slogan-text-container {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        padding: 60px 0 30px;
    }
    
    .slogan-title {
        font-size: 42px;
    }
    
    .slogan-subtitle {
        font-size: 26px;
    }
    
    .tagline::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .slogan-text {
        max-width: 80%;
        margin: 0 auto 35px;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .video-container {
        height: 50vh;
    }
    
    .video-overlay {
        background: linear-gradient(180deg, var(--accent-color) 0%, rgba(245, 245, 245, 0.7) 10%, rgba(245, 245, 245, 0) 100%);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-wrapper {
        flex-wrap: wrap;
    }
    
    .search-container {
        order: 3;
        flex: 0 0 100%;
        margin: 20px 0 0;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .nav-item {
        margin: 0 12px 10px;
    }
    
    .slogan-title {
        font-size: 36px;
    }
    
    .slogan-subtitle {
        font-size: 22px;
    }
    
    .slogan-text {
        max-width: 100%;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 80%;
    }
}

@media (max-width: 576px) {
    .header-announcement {
        font-size: 11px;
        padding: 10px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .icon-text {
        display: none;
    }
    
    .slogan-text-container {
        padding: 50px 0 30px;
    }
    
    .slogan-title {
        font-size: 30px;
    }
    
    .slogan-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .video-container {
        height: 40vh;
    }
}

/* Premium Footer Styles */

.site-footer {
    background-color: var(--body-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(50, 50, 50, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.footer-top {
    padding: 100px 0 80px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

/* Footer Brand Section */
.footer-brand {
    position: relative;
}

.footer-brand::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -30px;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    transition: var(--transition-medium);
}

.footer-logo::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
}

.footer-logo:hover::after {
    width: 80px;
    background-color: rgba(255, 255, 255, 0.5);
}

.logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
    transition: var(--transition-medium);
}

.footer-logo:hover .logo-img {
    transform: translateY(-3px);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
}

.footer-tagline::first-letter {
    font-size: 1.8em;
    font-family: var(--secondary-font);
    font-weight: 400;
    float: left;
    padding-right: 6px;
    line-height: 1;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    font-size: 15px;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--text-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: var(--transition-medium);
}

.social-link:hover {
    border-color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.social-link:hover i {
    color: var(--body-color);
}

/* Footer Navigation */
.footer-nav {
    position: relative;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, var(--text-light), rgba(255, 255, 255, 0.3));
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 16px;
    position: relative;
}

.footer-menu a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 0;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--text-light);
    transition: var(--transition-medium);
}

.footer-menu a:hover {
    color: var(--text-light);
    padding-left: 8px;
}

.footer-menu a:hover::before {
    width: 100%;
}

/* Footer Community */
.footer-community {
    position: relative;
}

.community-text {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 25px;
}

.community-badge {
    display: inline-block;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.community-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.community-badge:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Newsletter Section */
.footer-newsletter {
    position: relative;
}

.newsletter-text {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.newsletter-form .form-group {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    transition: var(--transition-medium);
    position: relative;
}

.newsletter-form .form-group::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-medium);
}

.newsletter-form .form-group:focus-within::after {
    width: 100%;
}

.newsletter-input {
    background: transparent;
    border: none;
    padding: 12px 0;
    color: var(--text-light);
    font-family: var(--primary-font);
    font-size: 14px;
    width: 100%;
    transition: var(--transition-medium);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-medium);
    font-style: italic;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-input:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
}

.newsletter-button {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 12px 0 12px 10px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    font-size: 16px;
}

.newsletter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
    z-index: -1;
}

.newsletter-button:hover {
    transform: translateX(5px);
}

.newsletter-button:hover::before {
    height: 100%;
}

/* Subscribe Text Animation */
.subscribe-text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 100%;
    font-size: 12px;
    transition: var(--transition-medium);
    color: rgba(255, 255, 255, 0.6);
}

.form-group:focus-within + .subscribe-text,
.form-group:hover + .subscribe-text {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 25px;
    transition: var(--transition-medium);
}

.copyright::before {
    content: '©';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.copyright:hover {
    color: rgba(255, 255, 255, 0.8);
}

.payment-methods {
    position: relative;
    padding: 10px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-icons {
    height: 24px;
    opacity: 0.8;
    transition: var(--transition-medium);
}

.payment-methods:hover .payment-icons {
    opacity: 1;
    transform: translateY(-2px);
}

/* Designer Credit */
.designer-credit {
    position: absolute;
    bottom: 25px;
    right: 40px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-medium);
}

.designer-credit i {
    font-size: 10px;
}

.designer-credit:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Media Queries */
@media (max-width: 1200px) {
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-top {
        padding: 80px 0 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 60px;
    }
    
    .footer-brand, .footer-newsletter {
        grid-column: span 2;
    }
    
    .footer-brand::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 70px 0 50px;
    }
    
    .footer-grid {
        gap: 40px;
    }
    
    .designer-credit {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand, .footer-newsletter {
        grid-column: span 1;
    }
    
    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .copyright {
        padding-left: 0;
    }
    
    .copyright::before {
        position: static;
        margin-right: 5px;
    }
    
    .payment-methods {
        border-left: none;
        padding: 0;
    }
}

/* Additional styles for premium footer animations and effects */

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for footer menu */
.footer-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-menu.animated li:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.footer-menu.animated li:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.footer-menu.animated li:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.footer-menu.animated li:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

/* Social links staggered animation */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-links.animated a:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: scale(1);
}

.social-links.animated a:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: scale(1);
}

.social-links.animated a:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: scale(1);
}

/* Social link ripple effect */
.social-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 1s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Newsletter form effects */
.newsletter-form.focused .form-group {
    border-color: rgba(255, 255, 255, 0.5);
}

.form-group.success-animation {
    border-color: rgba(0, 255, 0, 0.5) !important;
}

.newsletter-button.success {
    color: rgba(0, 255, 0, 0.8);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.newsletter-form.shake .form-group {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
    border-color: rgba(255, 0, 0, 0.3);
}

/* Thank you message animation */
.thank-you-message {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: rgba(0, 255, 0, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.thank-you-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Payment methods highlight */
.payment-methods.highlight .payment-icons {
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 5px rgba(255, 255, 255, 0.2));
}

/* Scrollbar styling for premium look */
.site-footer ::-webkit-scrollbar {
    width: 8px;
}

.site-footer ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.site-footer ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.site-footer ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Subtle background pattern */
.site-footer {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.97)), 
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100M100,0L0,100" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: auto;
}

/* Premium Printing Section Styles - Elegant Edition */

.printing-section {
    padding: 160px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.printing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100M100,0L0,100" stroke="rgba(0,0,0,0.015)" stroke-width="0.5"/></svg>');
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.8;
}

.printing-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.header-accent-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3), transparent);
    margin: 0 auto 30px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    position: relative;
    padding: 0 20px;
    font-family: var(--primary-font);
}

.section-title {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #000000;
    position: relative;
    font-family: var(--secondary-font);
    line-height: 1.2;
}

.section-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: -1;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.05);
    color: transparent;
}

.section-divider {
    width: 50px;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    margin: 0 auto 30px;
    position: relative;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    max-width: 600px;
}

/* Printing Showcase */
.printing-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 140px;
    position: relative;
}

.showcase-image {
    flex: 0 0 48%;
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
}

.corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.corner-accent-tl {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.corner-accent-tr {
    top: 0;
    right: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.corner-accent-bl {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.corner-accent-br {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.01);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: all 0.5s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover .feature-image {
    transform: scale(1.03);
}

.image-caption {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
}

.caption-line {
    width: 30px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    margin-right: 15px;
}

.image-caption p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Content Section */
.showcase-content {
    flex: 0 0 44%;
    padding-left: 40px;
}

.content-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    font-family: var(--secondary-font);
    display: inline-block;
    color: #000;
}

.title-accent {
    color: #000000;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.content-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-container {
    flex-shrink: 0;
    margin-right: 15px;
    margin-top: 3px;
}

.feature-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #000;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: #000;
    color: #fff;
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    color: #000;
}

.feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

.content-cta {
    margin-top: 15px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-text {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-icon {
    margin-left: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #000000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

.btn-outline:hover {
    color: #ffffff;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover .btn-icon {
    transform: translateX(5px);
}

/* Section Separator */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 80px;
    position: relative;
}

.section-separator::before,
.section-separator::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    flex: 1;
}

.separator-icon {
    padding: 0 20px;
    color: rgba(0, 0, 0, 0.2);
    font-size: 8px;
    transform: rotate(45deg);
}

/* Quality Statement */
.quality-statement {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
    position: relative;
}

.statement-title {
    font-family: var(--secondary-font);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #000;
}

.statement-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Spec Showcase */
.spec-showcase {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 30px;
}

.spec-card {
    flex: 1;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.spec-card-inner {
    padding: 50px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.spec-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.05);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.spec-card:hover .spec-card-inner {
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}

.spec-card:hover .spec-card-inner::before {
    transform: scaleX(1);
    transform-origin: left;
    background-color: #000;
}

.spec-icon-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.spec-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.03);
    color: #000;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.spec-card:hover .spec-icon {
    background-color: #000;
    color: #fff;
    transform: rotate(360deg);
}

.spec-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #000;
    transition: all 0.3s ease;
}

.spec-divider {
    width: 30px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 0 auto 20px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.spec-card:hover .spec-divider {
    width: 50px;
    background-color: rgba(0, 0, 0, 0.5);
}

.spec-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Section Footer */
.section-footer {
    text-align: center;
    padding-top: 40px;
    position: relative;
}

.footer-accent {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    margin: 0 auto 20px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.link-arrow i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: #000;
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* Animation classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.zoom-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .printing-section {
        padding: 120px 0;
    }
    
    .printing-showcase {
        margin-bottom: 100px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .content-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .printing-section {
        padding: 100px 0;
    }
    
    .section-header {
        margin-bottom: 80px;
    }
    
    .printing-showcase {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .showcase-image,
    .showcase-content {
        flex: 0 0 100%;
        width: 100%;
        padding-left: 0;
    }
    
    .showcase-image {
        order: -1;
        max-width: 650px;
        margin: 0 auto;
    }
    
    .spec-showcase {
        flex-direction: column;
        gap: 30px;
    }
    
    .spec-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .printing-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .content-title {
        font-size: 26px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .quality-statement {
        margin-bottom: 70px;
    }
    
    .statement-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .printing-section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .header-accent-line {
        height: 40px;
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-label {
        font-size: 11px;
        letter-spacing: 3px;
    }
    
    .feature-item {
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 13px;
    }
    
    .feature-text {
        font-size: 13px;
    }
    
    .content-cta {
        margin-top: 20px;
    }
    
    .btn-outline {
        padding: 10px 25px;
        font-size: 11px;
    }
    
    .image-frame {
        padding: 10px;
    }
    
    .corner-accent {
        width: 20px;
        height: 20px;
    }
    
    .spec-card-inner {
        padding: 40px 20px;
    }
    
    .spec-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .quality-statement {
        margin-bottom: 50px;
    }
}

/* Premium Form Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.modal.active {
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    background-color: #f9f9f9;
}

.modal-title {
    font-family: var(--secondary-font);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--body-color);
    letter-spacing: 0.5px;
}

.modal-subtitle {
    font-family: var(--primary-font);
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: transparent;
    border: none;
}

.close-modal:hover {
    color: var(--body-color);
    background-color: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}

.deal-info {
    flex: 0 0 45%;
    padding-right: 30px;
    margin-bottom: 0;
}

.deal-info h5 {
    font-family: var(--secondary-font);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--body-color);
    position: relative;
    display: inline-block;
}

.deal-info h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--body-color);
}

.deal-features {
    list-style: none;
    margin-bottom: 30px;
}

.deal-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 25px;
}

.deal-icon {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--body-color);
    font-size: 14px;
}

.deal-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.pricing-info {
    margin-bottom: 30px;
}

.pricing-info h5 {
    font-family: var(--secondary-font);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--body-color);
    position: relative;
    display: inline-block;
}

.pricing-info h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--body-color);
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 25px;
}

.price-icon {
    position: absolute;
    left: 0;
    color: var(--body-color);
    font-size: 14px;
}

.price-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
}

.form-intro {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
    line-height: 1.7;
    font-style: italic;
}

.order-form {
    flex: 0 0 55%;
    margin-top: 0;
    padding-left: 30px;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
    margin-bottom: 25px;
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--body-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #d0021b;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-family: var(--primary-font);
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.02);
    color: var(--body-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--body-color);
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group, .radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-item, .radio-item {
    display: flex;
    align-items: center;
    position: relative;
}

.checkbox-item input, .radio-item input {
    position: absolute;
    opacity: 0;
}

.checkbox-item label, .radio-item label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    min-height: 20px;
    line-height: 1.5;
}

.checkbox-item label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: white;
    transition: all 0.2s ease;
}

.radio-item label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: white;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.checkbox-item input:checked + label::before {
    background-color: var(--body-color);
    border-color: var(--body-color);
}

.radio-item input:checked + label::before {
    background-color: var(--body-color);
    border-color: var(--body-color);
}

.checkbox-item input:checked + label::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 0;
    color: white;
    font-size: 12px;
}

.radio-item input:checked + label::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

.file-upload {
    margin-top: 10px;
}

.file-upload-box {
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.file-upload-box:hover {
    border-color: var(--body-color);
    background-color: rgba(0, 0, 0, 0.02);
}

.file-upload-box i {
    font-size: 28px;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.file-upload-box p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.file-upload-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--body-color);
    color: white;
    font-size: 13px;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.file-upload-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.file-upload-btn:hover::before {
    left: 100%;
}

.file-upload-btn:hover {
    background-color: #333;
}

.file-input {
    display: none;
}

.form-text {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
}

.form-actions {
    margin-top: 40px;
    text-align: right;
}

.btn-submit {
    padding: 15px 40px;
    background-color: var(--body-color);
    color: white;
    border: none;
    border-radius: 0;
    font-family: var(--primary-font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .modal-body {
        flex-direction: column;
    }
    
    .deal-info {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .order-form {
        flex: 0 0 100%;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 30px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
    
    .modal-header {
        padding: 25px;
    }
    
    .modal-body {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        margin-bottom: 20px;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* Leftover Section Styles */

.leftover-container {
    padding: 140px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.leftover-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100M100,0L0,100" stroke="rgba(0,0,0,0.015)" stroke-width="0.5"/></svg>');
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.8;
}

.leftover-container .container {
    position: relative;
    z-index: 1;
}

/* Heading Section */
.leftover-heading {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.leftover-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.heading-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3), transparent);
    margin: 0 auto 30px;
}

.leftover-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    position: relative;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.leftover-title {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #000000;
    position: relative;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.leftover-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: -1;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.05);
    color: transparent;
}

.heading-divider {
    width: 50px;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    margin: 0 auto 30px;
    position: relative;
}

.leftover-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    max-width: 600px;
}

/* Main Content */
.leftover-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    position: relative;
}

.leftover-info {
    flex: 0 0 45%;
    padding-right: 40px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.leftover-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-wrapper {
    max-width: 520px;
}

.info-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    color: #000;
}

.dot-accent {
    color: #000000;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.info-paragraph {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.leftover-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 18px;
    color: #000;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background-color: #000;
}

.benefit-item:hover .benefit-icon i {
    color: #fff;
}

.benefit-details {
    flex: 1;
}

.benefit-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: #000;
}

.benefit-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

/* Visual Section */
.leftover-visual {
    flex: 0 0 48%;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.leftover-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.visual-border {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
}

.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.top-left {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.top-right {
    top: 0;
    right: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.visual-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.leftover-img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.01);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: all 0.5s ease;
}

.visual-wrapper:hover .img-overlay {
    opacity: 1;
}

.visual-wrapper:hover .leftover-img {
    transform: scale(1.03);
}

.img-caption {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
}

.caption-bar {
    width: 30px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    margin-right: 15px;
}

.img-caption p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Items Section */
.leftover-items {
    padding: 20px 0 80px;
    position: relative;
}

.items-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.items-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.items-title {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #000;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.items-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 40px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
}

.items-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.items-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.item-box {
    position: relative;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.item-box.visible {
    opacity: 1;
    transform: scale(1);
}

.item-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.sale-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff0000;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.item-photo {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.item-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.item-box:hover .item-photo img {
    transform: scale(1.05);
}

.photo-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.item-box:hover .photo-hover {
    opacity: 1;
}

.view-details {
    background-color: white;
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.item-box:hover .view-details {
    transform: translateY(0);
    opacity: 1;
}

.view-details:hover {
    background-color: #000;
    color: white;
}

.item-info {
    padding: 25px;
}

.item-name {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: #000;
}

.item-specs {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 15px;
    font-weight: 300;
}

.item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.size-info {
    font-size: 12px;
}

.available-prefix {
    color: rgba(0, 0, 0, 0.5);
    margin-right: 5px;
}

.available-sizes {
    font-weight: 500;
    color: #000;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.regular-price {
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
}

.discount-price {
    font-weight: 600;
    color: #ff0000;
    font-size: 16px;
}

.cart-add {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cart-add::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: all 0.3s ease;
    z-index: -1;
}

.cart-add:hover {
    color: white;
}

.cart-add:hover::before {
    left: 0;
}

.items-notice {
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.items-notice.visible {
    opacity: 1;
    transform: translateY(0);
}

.notice-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
    margin-bottom: 30px;
}

.notice-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.link-text {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.link-icon {
    margin-left: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    font-size: 14px;
}

.notice-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #000000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

.notice-link:hover {
    color: #ffffff;
}

.notice-link:hover::before {
    width: 100%;
}

.notice-link:hover .link-icon {
    transform: translateX(5px);
}

/* Divider */
.divider-element {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 80px;
    position: relative;
}

.divider-element::before,
.divider-element::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    flex: 1;
}

.divider-symbol {
    padding: 0 20px;
    color: rgba(0, 0, 0, 0.2);
    font-size: 8px;
    transform: rotate(45deg);
}

/* Important Note */
.important-note {
    margin: 60px auto 20px;
    max-width: 900px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.important-note.visible {
    opacity: 1;
    transform: translateY(0);
}

.note-wrapper {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 30px;
    border-left: 3px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.note-icon {
    font-size: 24px;
    color: rgba(0, 0, 0, 0.7);
    width: 30px;
}

.note-content {
    flex: 1;
}

.note-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #000;
}

.note-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

/* Media Queries */
@media (max-width: 1200px) {
    .leftover-main {
        margin-bottom: 80px;
    }
    
    .items-gallery {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .leftover-container {
        padding: 120px 0;
    }
    
    .leftover-main {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .leftover-info, .leftover-visual {
        flex: 0 0 100%;
        width: 100%;
        padding-right: 0;
    }
    
    .leftover-visual {
        max-width: 650px;
        margin: 0 auto;
    }
    
    .items-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .leftover-container {
        padding: 100px 0;
    }
    
    .items-gallery {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .note-wrapper {
        padding: 25px;
    }
    
    .note-icon {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .leftover-container {
        padding: 80px 0;
    }
    
    .leftover-benefits {
        gap: 20px;
    }
    
    .benefit-item {
        align-items: center;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
    }
    
    .note-wrapper {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .note-icon {
        margin-bottom: 5px;
    }
}

section#printing {
    padding-bottom: 0px!important;
}

section#leftover {
    padding-top: 0px!important;
}

/* Custom Order Section Styles */

.custom-order-wrapper {
    padding: 140px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.custom-order-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100M100,0L0,100" stroke="rgba(0,0,0,0.015)" stroke-width="0.5"/></svg>');
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.8;
}

.custom-order-wrapper .container {
    position: relative;
    z-index: 1;
}

/* Header Section */
.order-header {
    text-align: center;
    margin-bottom: 90px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.order-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.order-accent-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3), transparent);
    margin: 0 auto 30px;
}

.order-category {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    position: relative;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.order-primary-title {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #000000;
    position: relative;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.order-primary-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: -1;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.05);
    color: transparent;
}

.order-separator {
    width: 50px;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    margin: 0 auto 30px;
    position: relative;
}

.order-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    max-width: 600px;
}

/* Order Overview */
.order-overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    position: relative;
}

.order-gallery {
    flex: 0 0 48%;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.order-gallery.visible {
    opacity: 1;
    transform: translateX(0);
}

.gallery-frame {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
}

.gallery-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.gallery-top-left {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.gallery-top-right {
    top: 0;
    right: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.gallery-bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.gallery-bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.gallery-container {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.01);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-container:hover .gallery-overlay {
    opacity: 1;
}

.gallery-container:hover .gallery-image {
    transform: scale(1.03);
}

.gallery-label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 15px;
}

.label-line {
    width: 30px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    margin-right: 15px;
}

.gallery-label p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Order Description */
.order-description {
    flex: 0 0 44%;
    padding-left: 40px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.order-description.visible {
    opacity: 1;
    transform: translateX(0);
}

.description-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    color: #000;
}

.title-dot {
    color: #000000;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.description-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.order-perks {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.perk-item:hover {
    transform: translateX(5px);
}

.perk-icon-wrapper {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.perk-icon-wrapper i {
    font-size: 18px;
    color: #000;
    transition: all 0.3s ease;
}

.perk-item:hover .perk-icon-wrapper {
    background-color: #000;
}

.perk-item:hover .perk-icon-wrapper i {
    color: #fff;
}

.perk-content {
    flex: 1;
}

.perk-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: #000;
}

.perk-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

.order-action {
    margin-top: 40px;
}

.order-primary-button {
    display: inline-block;
    padding: 16px 38px;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #000000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 0;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.order-primary-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #333;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.order-primary-button:hover {
    transform: translateY(-5px);
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    border-color: #333;
}

.order-primary-button:hover::before {
    height: 100%;
}

/* Process Section */
.order-process {
    padding: 60px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.order-process.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-title {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 60px;
    color: #000;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 40px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 0 0 calc(25% - 30px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-item::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15%;
    width: 30%;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

.step-item:last-child::after {
    display: none;
}

.step-number-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.step-number {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.step-item:hover .step-number-wrapper {
    background-color: #000;
}

.step-item:hover .step-number {
    color: #fff;
}

.step-content {
    padding-right: 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

/* Value Section */
.order-value {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.order-value.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-item {
    flex: 0 0 calc(33.333% - 40px);
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.value-item:hover::before {
    background-color: #000;
}

.value-icon {
    margin-bottom: 25px;
    font-size: 30px;
    color: #000;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.2);
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.value-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 300;
}

/* CTA Section */
.order-cta {
    padding: 40px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.order-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-box {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.cta-title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.cta-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 38px;
    background-color: #000000;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #000000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #333;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.cta-button:hover {
    color: #ffffff;
    border-color: #333;
}

.cta-button:hover::before {
    height: 100%;
}

/* Media Queries */
@media (max-width: 1200px) {
    .process-steps {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .custom-order-wrapper {
        padding: 120px 0;
    }
    
    .order-overview {
        flex-direction: column;
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .order-gallery, .order-description {
        flex: 0 0 100%;
        width: 100%;
        padding-left: 0;
    }
    
    .order-gallery {
        max-width: 650px;
        margin: 0 auto;
    }
    
    .step-item {
        flex: 0 0 calc(50% - 20px);
    }
    
    .step-item::after {
        display: none;
    }
    
    .order-value {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .value-item {
        flex: 0 0 calc(50% - 40px);
    }
    
    .cta-box {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .custom-order-wrapper {
        padding: 100px 0;
    }
    
    .order-primary-title {
        font-size: 38px;
    }
    
    .step-item {
        flex: 0 0 100%;
    }
    
    .value-item {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .custom-order-wrapper {
        padding: 80px 0;
    }
    
    .order-primary-title {
        font-size: 32px;
    }
    
    .description-title {
        font-size: 24px;
    }
    
    .order-perks {
        gap: 20px;
    }
    
    .perk-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .perk-title {
        font-size: 16px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 13px;
    }
}

section#leftover {
    padding-bottom: 0px;
}

section#custom-order {
    padding-top: 50px;
    padding-bottom: 0px;
}

/* Contact Section Styles */

.contact-block {
    padding: 140px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100M100,0L0,100" stroke="rgba(0,0,0,0.015)" stroke-width="0.5"/></svg>');
    background-size: 30px 30px;
    z-index: 0;
    opacity: 0.8;
}

.contact-block .container {
    position: relative;
    z-index: 1;
}

/* Contact Introduction */
.contact-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3), transparent);
    margin: 0 auto 30px;
}

.intro-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    position: relative;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
}

.intro-heading {
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #000000;
    position: relative;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.intro-heading::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: -1;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.05);
    color: transparent;
}

.intro-divider {
    width: 50px;
    height: 1px;
    background: rgba(0, 0, 0, 0.3);
    margin: 0 auto 30px;
    position: relative;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.65);
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    max-width: 600px;
}

/* Contact Layout */
.contact-layout {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    position: relative;
}

/* Form Area */
.contact-form-area {
    flex: 0 0 55%;
    padding-right: 50px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-form-area.visible {
    opacity: 1;
    transform: translateX(0);
}

.form-container {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 0;
    position: relative;
    border-left: 3px solid rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.form-subtitle {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.input-row-half {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.input-row-half .input-group {
    flex: 0 0 calc(50% - 10px);
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.8);
}

.required-mark {
    color: #ff0000;
    font-weight: 600;
}

.input-field {
    height: 50px;
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.textarea-field {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-wrapper label {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #333;
    transition: height 0.3s ease;
    z-index: -1;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-button:hover::before {
    height: 100%;
}

.button-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

/* Info Area */
.contact-info-area {
    flex: 0 0 40%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-info-area.visible {
    opacity: 1;
    transform: translateX(0);
}

.info-container {
    background-color: rgba(0, 0, 0, 0.04);
    padding: 40px;
    height: 100%;
    border-right: 3px solid rgba(0, 0, 0, 0.1);
}

.info-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.info-subtitle {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    font-weight: 300;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.info-item:hover .info-icon {
    background-color: #000;
    color: #fff;
}

.info-content {
    flex: 1;
}

.info-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.info-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* Social Media */
.social-connect {
    margin-bottom: 40px;
}

.social-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-item:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Business Hours */
.business-hours {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.hours-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.day {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.8);
}

.time {
    color: rgba(0, 0, 0, 0.7);
}

/* Map Section */
.contact-map {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-map.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: all 0.5s ease;
}

.map-placeholder:hover .map-image {
    filter: grayscale(0);
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.map-placeholder:hover .map-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

.map-message {
    text-align: center;
    color: #fff;
    padding: 20px 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.map-message i {
    font-size: 24px;
    margin-bottom: 10px;
}

.map-message p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.map-placeholder:hover .map-message {
    transform: scale(1.05);
}

/* FAQ Section */
.contact-faq {
    padding: 60px 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-faq.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #000;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 40px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    background-color: rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.question-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.question-icon {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-question:hover .question-icon {
    background-color: #000;
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question {
    background-color: rgba(0, 0, 0, 0.03);
}

.faq-item.active .question-icon {
    background-color: #000;
    color: #fff;
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Animation classes */
@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

.form-shake {
    animation: formShake 0.5s ease;
}

@keyframes success-pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.success-pulse {
    animation: success-pulse 1.5s ease infinite;
}

/* Form Success State */
.form-success-message {
    display: none;
    padding: 40px 20px;
    text-align: center;
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 3px solid #4CAF50;
    margin-bottom: 20px;
}

.form-success-message i {
    font-size: 50px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.form-success-message h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.form-success-message p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Media Queries */
@media (max-width: 1200px) {
    .contact-form-area {
        padding-right: 30px;
    }
    
    .form-container, .info-container {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-form-area, .contact-info-area {
        flex: 0 0 100%;
        width: 100%;
        padding-right: 0;
    }
    
    .info-container {
        border-right: none;
        border-left: 3px solid rgba(0, 0, 0, 0.1);
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-block {
        padding: 100px 0;
    }
    
    .intro-heading {
        font-size: 38px;
    }
    
    .input-row-half {
        flex-direction: column;
        gap: 20px;
    }
    
    .input-row-half .input-group {
        flex: 0 0 100%;
    }
    
    .form-container, .info-container {
        padding: 25px 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .question-text {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .contact-block {
        padding: 80px 0;
    }
    
    .intro-heading {
        font-size: 32px;
    }
    
    .intro-label {
        font-size: 11px;
        letter-spacing: 3px;
    }
    
    .form-title, .info-title {
        font-size: 22px;
    }
    
    .form-subtitle, .info-subtitle {
        font-size: 14px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .map-container {
        height: 250px;
    }
}

section#contact {
    padding-top: 0px;
    padding-bottom: 0px;
}

.logo-link img {
    height: 100%;
    width: 100%;
    filter: none;
}

.footer-logo img{
    height: 100%;
    width: 100%;
}

/* Header Styles */
.site-header {
    width: 100%;
    position: relative;
}

/* Announcement Bar */
.header-announcement {
    background-color: var(--body-color);
    color: var(--text-light);
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.header-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.announcement-wrapper {
    position: relative;
    display: inline-block;
}

.highlight {
    color: #ff0000;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 0 2px;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ff0000;
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.header-announcement:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Main Header */
.header-main {
    padding: 25px 0 15px;
    background-color: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-subtle);
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
    border-bottom: 1px solid var(--border-color);
}

.header-main.scrolled {
    padding: 15px 0 10px;
    box-shadow: var(--shadow-medium);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

/* Logo */
.logo {
    flex: 0 0 auto;
    position: relative;
    transition: var(--transition-medium);
}

.logo-link {
    display: block;
    position: relative;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--body-color);
    transform: translateX(-50%) scaleX(0);
    transition: var(--transition-medium);
}

.logo-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.logo-img {
    height: 40px;
    transition: var(--transition-medium);
}

.scrolled .logo-img {
    height: 35px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1010;
    margin-left: 20px;
}

.toggle-bar {
    width: 100%;
    height: 2px;
    background-color: var(--body-color);
    transition: var(--transition-fast);
}

.mobile-menu-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Search */
.search-container {
    flex: 0 1 400px;
    margin: 0 20px;
    position: relative;
}

.search-form {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.search-form:focus-within {
    border-color: var(--body-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-family: var(--primary-font);
    font-size: 14px;
    background-color: transparent;
    transition: var(--transition-medium);
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-style: italic;
    transition: var(--transition-medium);
}

.search-input:focus {
    outline: none;
}

.search-input:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
}

.search-button {
    background-color: var(--body-color);
    color: var(--text-light);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition-medium);
    font-size: 14px;
}

.search-button:hover {
    background-color: #333;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    color: var(--body-color);
    position: relative;
    transition: var(--transition-medium);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    transition: var(--transition-medium);
    position: relative;
}

.icon-text {
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
    transition: var(--transition-medium);
    opacity: 0.8;
}

.icon-link:hover .icon-circle {
    background-color: var(--body-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.icon-link:hover .icon-text {
    opacity: 1;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: var(--text-light);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition-medium);
    transform: scale(1);
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.3);
}

.cart-icon:hover .cart-count {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

/* Navigation */
.main-navigation {
    margin-bottom: 10px;
    transition: var(--transition-medium);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 10px;
}

.nav-item {
    margin: 0 25px;
    position: relative;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--body-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    font-weight: 600;
}

/* Header Slogan / Banner */
.header-slogan {
    padding: 0;
    position: relative;
    background-color: var(--accent-color);
    overflow: hidden;
}

.slogan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.slogan-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.slogan-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.9) 0%, rgba(245, 245, 245, 0.8) 50%, rgba(245, 245, 245, 0) 100%);
    z-index: -1;
}

.slogan-text-container {
    max-width: 580px;
    padding-right: 80px;
    padding-left: 60px;
    animation: fadeIn 1.5s ease-out;
    position: relative;
}

.slogan-text-container::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, var(--body-color), transparent);
    left: 0;
    top: 15%;
}

.tagline {
    display: inline-block;
    font-family: var(--secondary-font);
    font-style: italic;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 1px;
}

.tagline::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    top: 50%;
    right: -60px;
}

.tagline::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    bottom: -12px;
    left: 0;
}

.slogan-title {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 0px rgba(255, 255, 255, 0.5);
}

.slogan-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    color: transparent;
}

.slogan-subtitle {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: var(--secondary-font);
    opacity: 0.85;
    position: relative;
    display: inline-block;
}

.slogan-subtitle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.15), transparent);
    bottom: -10px;
    left: 0;
}

.slogan-text {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.7);
    max-width: 90%;
    position: relative;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.slogan-text::first-letter {
    font-size: 2em;
    font-weight: 500;
    font-family: var(--secondary-font);
    line-height: 0;
}

.btn-group {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    position: relative;
}

.btn-group::before {
    content: '';
    position: absolute;
    width: 30%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    top: -30px;
    left: 0;
}

.btn-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--body-color);
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--body-color);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 0;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #333;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--text-light);
    border-color: #333;
}

.btn-primary:hover::before {
    height: 100%;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 36px;
    background-color: transparent;
    color: var(--body-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--body-color);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--body-color);
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover::before {
    height: 100%;
}

/* Luxury element */
.luxury-element {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

.luxury-element::before,
.luxury-element::after {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.05);
}

.luxury-element::before {
    width: 1px;
    height: 120px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.luxury-element::after {
    width: 120px;
    height: 1px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Video Section */
.slogan-video {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: var(--transition-slow);
    filter: brightness(1.03) contrast(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color) 0%, rgba(245, 245, 245, 0.8) 10%, rgba(245, 245, 245, 0) 50%);
    z-index: 4;
    pointer-events: none;
}

.corner-accent {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 5;
    border-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.corner-accent-tl {
    top: 30px;
    left: 30px;
    border-left: 1px solid;
    border-top: 1px solid;
}

.corner-accent-tr {
    top: 30px;
    right: 30px;
    border-right: 1px solid;
    border-top: 1px solid;
}

.corner-accent-bl {
    bottom: 30px;
    left: 30px;
    border-left: 1px solid;
    border-bottom: 1px solid;
}

.corner-accent-br {
    bottom: 30px;
    right: 30px;
    border-right: 1px solid;
    border-bottom: 1px solid;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .slogan-title {
        font-size: 48px;
    }
    
    .slogan-subtitle {
        font-size: 28px;
    }

    .search-container {
        flex: 0 1 300px;
    }
}

@media (max-width: 992px) {
    .header-wrapper {
        margin-bottom: 0;
    }

    .header-right {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 30px;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link:hover::after, 
    .nav-link.active::after {
        transform: scaleX(0);
    }
    
    .slogan-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .slogan-content, .slogan-video {
        grid-column: 1;
    }
    
    .slogan-text-container {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        padding: 60px 0 30px;
    }
    
    .slogan-title {
        font-size: 42px;
    }
    
    .slogan-subtitle {
        font-size: 26px;
    }
    
    .slogan-text-container::before {
        left: 50%;
        transform: translateX(-50%);
        height: 3px;
        width: 70%;
        top: 20px;
        background: linear-gradient(to right, transparent, var(--body-color), transparent);
    }
    
    .tagline::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .slogan-text {
        max-width: 80%;
        margin: 0 auto 35px;
    }
    
    .btn-group {
        justify-content: center;
    }
    
    .btn-group::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .video-container {
        height: 50vh;
    }
    
    .video-overlay {
        background: linear-gradient(180deg, var(--accent-color) 0%, rgba(245, 245, 245, 0.7) 10%, rgba(245, 245, 245, 0) 100%);
    }
    
    .search-container {
        order: 3;
        flex: 0 0 100%;
        margin: 20px 0 0;
    }
    
    /* Page overlay for mobile menu */
    .page-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .page-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .search-container {
        order: 3;
        flex: 0 0 100%;
        margin: 20px 0 0;
    }
    
    .icon-text {
        display: none;
    }
    
    .slogan-text-container {
        padding: 50px 0 30px;
    }
    
    .slogan-title {
        font-size: 36px;
    }
    
    .slogan-subtitle {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 80%;
    }
    
    .video-container {
        height: 40vh;
    }
}

@media (max-width: 576px) {
    .header-announcement {
        font-size: 11px;
        padding: 10px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .slogan-text-container {
        padding: 40px 15px 30px;
    }
    
    .slogan-title {
        font-size: 30px;
    }
    
    .slogan-subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .video-container {
        height: 40vh;
    }
    
    .corner-accent {
        width: 20px;
        height: 20px;
    }
    
    .corner-accent-tl {
        top: 15px;
        left: 15px;
    }
    
    .corner-accent-tr {
        top: 15px;
        right: 15px;
    }
    
    .corner-accent-bl {
        bottom: 15px;
        left: 15px;
    }
    
    .corner-accent-br {
        bottom: 15px;
        right: 15px;
    }
}

/* Keep the rest of the CSS styles the same */

/* Extraordinary Preloader - Advanced Luxury Experience */
.extraordinary-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
}

/* Dynamic particles background */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Glowing backdrop effect */
.glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30vw;
    height: 30vw;
    max-width: 500px;
    max-height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(50, 50, 50, 0.5) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: glowPulse 4s infinite alternate ease-in-out 1s;
}

/* Luxury frame */
.luxury-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 800px;
    height: 300px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0;
}

.top-left {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    animation: revealCorner 1s forwards 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.top-right {
    top: 0;
    right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    animation: revealCorner 1s forwards 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    animation: revealCorner 1s forwards 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    animation: revealCorner 1s forwards 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.frame-edge {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform-origin: center;
}

.frame-edge.top, .frame-edge.bottom {
    left: 40px;
    width: calc(100% - 80px);
    height: 1px;
    transform: scaleX(0);
}

.frame-edge.left, .frame-edge.right {
    top: 40px;
    width: 1px;
    height: calc(100% - 80px);
    transform: scaleY(0);
}

.frame-edge.top {
    top: 0;
    animation: expandHorizontal 1.5s forwards 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.frame-edge.right {
    right: 0;
    animation: expandVertical 1.5s forwards 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.frame-edge.bottom {
    bottom: 0;
    animation: expandHorizontal 1.5s forwards 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.frame-edge.left {
    left: 0;
    animation: expandVertical 1.5s forwards 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Main content */
.preloader-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    animation: fadeContentIn 1s forwards 0.5s;
}

/* Brand reveal */
.brand-reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.letter-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.letter-wrapper {
    position: relative;
    margin: 0 3px;
    overflow: hidden;
    width: 30px;
    height: 40px;
}

.collection .letter-wrapper {
    width: 22px;
    height: 30px;
}

.letter-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 30px;
    font-weight: 200;
    letter-spacing: 0;
    overflow: hidden;
    transform: translateY(100%);
}

.collection .letter-mask {
    font-size: 22px;
}

.letter-mask::before {
    content: attr(data-letter);
}

.letter-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
    opacity: 0;
}

/* Sequential letter animations */
.letter-container:first-child .letter-wrapper:nth-child(1) .letter-mask { animation: revealLetter 0.8s forwards 1.6s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container:first-child .letter-wrapper:nth-child(2) .letter-mask { animation: revealLetter 0.8s forwards 1.7s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container:first-child .letter-wrapper:nth-child(3) .letter-mask { animation: revealLetter 0.8s forwards 1.8s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container:first-child .letter-wrapper:nth-child(4) .letter-mask { animation: revealLetter 0.8s forwards 1.9s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container:first-child .letter-wrapper:nth-child(5) .letter-mask { animation: revealLetter 0.8s forwards 2.0s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container:first-child .letter-wrapper:nth-child(6) .letter-mask { animation: revealLetter 0.8s forwards 2.1s cubic-bezier(0.19, 1, 0.22, 1); }

.letter-container.collection .letter-wrapper:nth-child(1) .letter-mask { animation: revealLetter 0.8s forwards 2.4s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container.collection .letter-wrapper:nth-child(2) .letter-mask { animation: revealLetter 0.8s forwards 2.5s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container.collection .letter-wrapper:nth-child(3) .letter-mask { animation: revealLetter 0.8s forwards 2.6s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container.collection .letter-wrapper:nth-child(4) .letter-mask { animation: revealLetter 0.8s forwards 2.7s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container.collection .letter-wrapper:nth-child(5) .letter-mask { animation: revealLetter 0.8s forwards 2.8s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container.collection .letter-wrapper:nth-child(6) .letter-mask { animation: revealLetter 0.8s forwards 2.9s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container.collection .letter-wrapper:nth-child(7) .letter-mask { animation: revealLetter 0.8s forwards 3.0s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container.collection .letter-wrapper:nth-child(8) .letter-mask { animation: revealLetter 0.8s forwards 3.1s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container.collection .letter-wrapper:nth-child(9) .letter-mask { animation: revealLetter 0.8s forwards 3.2s cubic-bezier(0.19, 1, 0.22, 1); }
.letter-container.collection .letter-wrapper:nth-child(10) .letter-mask { animation: revealLetter 0.8s forwards 3.3s cubic-bezier(0.19, 1, 0.22, 1); }

.letter-wrapper:hover .letter-glow {
    opacity: 1;
    animation: letterGlowPulse 2s infinite alternate;
}

/* Brand separator */
.brand-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20px;
    position: relative;
}

.brand-separator::before,
.brand-separator::after {
    content: '';
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    width: 0;
    position: absolute;
    top: 50%;
}

.brand-separator::before {
    right: 50%;
    margin-right: 15px;
    animation: expandSeparator 1s forwards 2.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.brand-separator::after {
    left: 50%;
    margin-left: 15px;
    animation: expandSeparator 1s forwards 2.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.diamond-container {
    width: 10px;
    height: 10px;
    position: relative;
}

.diamond {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    transform: rotate(45deg) scale(0);
    animation: revealDiamond 1s forwards 2.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Premium loader */
.premium-loader {
    width: 240px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 1s forwards 3.4s;
}

.progress-track {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.progress-glow {
    position: absolute;
    top: -2px;
    left: -100%;
    height: 6px;
    width: 60px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 80%);
    filter: blur(3px);
    animation: moveGlow 2s infinite linear;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.progress-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translateY(-2px);
    transition: all 0.5s ease;
}

.dot.active {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Animation for hiding preloader */
.extraordinary-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), visibility 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Keyframe animations */
@keyframes revealCorner {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes expandHorizontal {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

@keyframes expandVertical {
    from { transform: scaleY(0); opacity: 0; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes fadeContentIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes revealLetter {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes expandSeparator {
    from { width: 0; }
    to { width: 80px; }
}

@keyframes revealDiamond {
    0% { transform: rotate(45deg) scale(0); opacity: 0; }
    50% { transform: rotate(45deg) scale(1.2); opacity: 1; }
    100% { transform: rotate(45deg) scale(1); opacity: 0.8; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes moveGlow {
    from { left: -100px; }
    to { left: 100%; }
}

@keyframes glowPulse {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes letterGlowPulse {
    0% { opacity: 0.2; filter: blur(3px); }
    100% { opacity: 1; filter: blur(5px); }
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .luxury-frame {
        width: 90%;
        height: 260px;
    }
    
    .letter-wrapper {
        width: 24px;
        height: 32px;
    }
    
    .letter-mask {
        font-size: 24px;
    }
    
    .collection .letter-wrapper {
        width: 18px;
        height: 24px;
    }
    
    .collection .letter-mask {
        font-size: 18px;
    }
    
    .premium-loader {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .luxury-frame {
        width: 90%;
        height: 240px;
    }
    
    .letter-wrapper {
        width: 18px;
        height: 28px;
        margin: 0 2px;
    }
    
    .letter-mask {
        font-size: 18px;
    }
    
    .collection .letter-wrapper {
        width: 14px;
        height: 20px;
    }
    
    .collection .letter-mask {
        font-size: 14px;
    }
    
    .premium-loader {
        width: 160px;
    }
    
    .frame-corner {
        width: 30px;
        height: 30px;
    }
}

/* Exceptional Custom Cursor System */

/* Global cursor override */
* {
    cursor: none !important;
}

/* Main cursor container */
.exceptional-cursor-system {
    position: fixed;
    z-index: 10000;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    mix-blend-mode: exclusion;
}

/* Main cursor core elements */
.cursor-core {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 10001;
}

.cursor-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    z-index: 10003;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cursor-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10002;
}

.cursor-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 10001;
}

.cursor-trail {
    stroke-dasharray: 175;
    stroke-dashoffset: 175;
    transition: stroke-dashoffset 1s ease;
}

/* Cursor particles */
.cursor-particles-container {
    position: fixed;
    pointer-events: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.cursor-particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                opacity 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* Decorative cursor elements */
.cursor-decorative-elements {
    position: fixed;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    z-index: 9998;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.decorative-circle {
    opacity: 0.2;
    transform-origin: center;
    animation: rotateCircle 10s linear infinite;
}

.decorative-line {
    opacity: 0;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    animation-fill-mode: forwards;
}

/* Interaction state visual */
.cursor-interaction-state {
    position: fixed;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.interaction-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.interaction-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

.interaction-text {
    position: absolute;
    bottom: -20px;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

/* Magnetic field effect */
.cursor-magnetic-field {
    position: fixed;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    z-index: 9997;
    pointer-events: none;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 40%,
        rgba(255, 255, 255, 0) 70%
    );
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Image lens effect */
.cursor-image-lens {
    position: fixed;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    z-index: 10005;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.lens-container {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.lens-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.2);
    filter: contrast(1.1) brightness(1.1);
}

.lens-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Interaction States */

/* Hover state */
.cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
}

.cursor-hover .cursor-ring {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.8);
}

.cursor-hover .cursor-glow {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
}

.cursor-hover .cursor-path {
    opacity: 1;
}

.cursor-hover .cursor-trail {
    stroke-dashoffset: 0;
    animation: rotatePath 5s linear infinite;
}

/* Button state */
.cursor-button .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.8;
}

.cursor-button .cursor-ring {
    width: 70px;
    height: 70px;
    border-color: rgba(255, 255, 255, 0.8);
    border-width: 2px;
}

.cursor-button .cursor-decorative-elements {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.8);
}

.cursor-button .decorative-line {
    animation-name: revealLine;
}

.cursor-button .cursor-interaction-state {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cursor-button .interaction-text::after {
    content: 'Click';
}

.cursor-button .icon-explore {
    display: none;
}

.cursor-button .icon-click {
    display: block;
}

/* Image state */
.cursor-image .cursor-dot {
    opacity: 0;
}

.cursor-image .cursor-ring {
    opacity: 0;
}

.cursor-image .cursor-image-lens {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cursor-image .cursor-decorative-elements {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.2);
}

.cursor-image .cursor-interaction-state {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cursor-image .interaction-circle {
    width: 50px;
    height: 50px;
}

.cursor-image .icon-explore, .cursor-image .icon-click {
    display: none;
}

.cursor-image .icon-view {
    display: block;
}

.cursor-image .interaction-text::after {
    content: 'View';
}

/* Text input state */
.cursor-text .cursor-dot {
    width: 2px;
    height: 20px;
    border-radius: 1px;
    animation: blinkCaret 1s infinite;
}

.cursor-text .cursor-ring {
    opacity: 0;
}

.cursor-text .interaction-text::after {
    content: 'Type';
}

/* Magnetic state */
.cursor-magnetic .cursor-magnetic-field {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cursor-magnetic .cursor-dot {
    transform: translate(-50%, -50%) scale(1.2);
}

.cursor-magnetic .cursor-glow {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.3);
    filter: blur(5px);
}

/* Draggable state */
.cursor-draggable .cursor-dot {
    transform: translate(-50%, -50%) scale(1.2);
}

.cursor-draggable .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.6);
}

.cursor-draggable .icon-explore, .cursor-draggable .icon-click, .cursor-draggable .icon-view {
    display: none;
}

.cursor-draggable .icon-drag {
    display: block;
}

.cursor-draggable .cursor-interaction-state {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cursor-draggable .interaction-text::after {
    content: 'Drag';
}

/* Moving effect */
.cursor-moving .cursor-dot {
    transform: translate(-50%, -50%) scale(0.8);
}

.cursor-moving .cursor-ring {
    transform: translate(-50%, -50%) scale(0.95);
}

/* Down (clicking) effect */
.cursor-down .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

.cursor-down .cursor-ring {
    transform: translate(-50%, -50%) scale(0.8);
    border-width: 2px;
}

.cursor-down .interaction-circle {
    transform: scale(0.9);
}

/* Hide on mobile/tablet */
@media (max-width: 1024px) {
    .exceptional-cursor-system {
        display: none;
    }
    
    * {
        cursor: auto !important;
    }
}

/* Animations */
@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotatePath {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes revealLine {
    from { stroke-dashoffset: 100; opacity: 0; }
    to { stroke-dashoffset: 0; opacity: 0.2; }
}

@keyframes blinkCaret {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes particleFade {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    20% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
}