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

:root {
    --bg-dark: #262626;
    --bg-light: #111111;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --gold-solid: #C99E52;
    --gold-grad: linear-gradient(135deg, #FFE194 0%, #C99E52 50%, #835B16 100%);
    --gold-grad-text: linear-gradient(to right, #FFE194, #C99E52, #835B16);
    --border-gold: rgba(201, 158, 82, 0.4);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-cursive: 'Great Vibes', cursive;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.gold-gradient {
    background: var(--gold-grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cursive-text {
    font-family: var(--font-cursive);
    color: var(--gold-solid);
    font-size: 1.8rem;
    margin-top: 10px;
}

/* Buttons */
.btn-gold {
    display: inline-block;
    background: var(--gold-grad);
    color: #000;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 158, 82, 0.2);
    border: none;
    cursor: pointer;
    animation: pulseGold 2s infinite;
    transition: transform 0.3s, box-shadow 0.3s;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 158, 82, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(201, 158, 82, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 158, 82, 0);
    }
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 158, 82, 0.6);
    animation: none;
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold-solid);
    border: 1px solid var(--gold-solid);
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: var(--gold-grad);
    color: #000;
    border-color: transparent;
}

.btn-outline-gold.light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-gold.light:hover {
    background: #fff;
    color: #000;
}

/* Section Common */
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--gold-solid);
    letter-spacing: 2px;
}

.section-header .line {
    height: 1px;
    width: 60px;
    background-color: var(--gold-solid);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    padding: 15px 5%;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 158, 82, 0.1);
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
    padding: 6px 10px;
    border-radius: 4px;

}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--gold-solid);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--gold-solid);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    /* Space for navbar */
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.4) 100%), url('../images/hero.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.1) saturate(1.05);
}

/* Abstract pillar background matching design */
.pillar {
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    animation: floatPillar 6s ease-in-out infinite;
}

@keyframes floatPillar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.pillar-left {
    width: 30%;
    height: 80%;
    left: -5%;
    transform: skewX(15deg);
    filter: brightness(0.7);
    border-right: 2px solid var(--gold-solid);
    animation-delay: 0s;
}

.pillar-center-1 {
    width: 15%;
    height: 95%;
    left: 30%;
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0 100%, 0 20%);
    border: 1px solid rgba(201, 158, 82, 0.3);
    animation-delay: 1s;
}

.pillar-center-2 {
    width: 15%;
    height: 100%;
    left: 45%;
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0 100%, 0 20%);
    border: 1px solid rgba(201, 158, 82, 0.3);
    z-index: 2;
    animation-delay: 2s;
}

.pillar-center-3 {
    width: 15%;
    height: 85%;
    left: 60%;
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0 100%, 0 20%);
    border: 1px solid rgba(201, 158, 82, 0.3);
    animation-delay: 1.5s;
}

.pillar-right {
    width: 30%;
    height: 75%;
    right: -5%;
    transform: skewX(-15deg);
    filter: brightness(0.6);
    border-left: 2px solid var(--gold-solid);
    animation-delay: 0.5s;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.28), transparent);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 0;
    transform: translateY(-7vh);
}

.hero-logo {
    width: min(580px, 80vw);
    max-height: 40vh;
    object-fit: contain;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    position: relative;
    z-index: 2;
    filter:
        drop-shadow(0 0 22px rgba(255, 210, 92, 0.48)) drop-shadow(0 0 72px rgba(190, 112, 18, 0.36));
}

.hero-slogan {
    position: relative;
    z-index: 2;
    margin-bottom: 34px;
}

.hero-btn {
    position: relative;
    z-index: 2;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 38%;
    width: min(900px, 96vw);
    height: 420px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(220, 145, 30, 0.2) 0%, rgba(172, 98, 12, 0.08) 36%, rgba(0, 0, 0, 0) 72%);
    filter: blur(16px) brightness(1.05);
    pointer-events: none;
    z-index: 1;
}

.hero-content .main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content .main-title .text-3d {
    font-size: 8rem;
    letter-spacing: 5px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8), 2px 2px 0px #4a340b, 4px 4px 0px #2a1a05;
    background: var(--gold-grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    overflow: hidden;
}

.hero-content .main-title .text-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 4s infinite linear;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.hero-content .main-title .subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    letter-spacing: 15px;
    margin-top: -10px;
    color: var(--text-main);
    border-top: 1px solid var(--gold-solid);
    border-bottom: 1px solid var(--gold-solid);
    padding: 5px 20px;
}

.hero-content .materials {
    font-family: var(--font-heading);
    letter-spacing: 6px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.slogan-container {
    margin-bottom: 40px;
}

.cursive-slogan {
    font-family: var(--font-cursive);
    color: var(--gold-solid);
    font-size: 3rem;
    margin-bottom: -15px;
    text-shadow: 0 0 10px rgba(201, 158, 82, 0.3);
}

.serif-slogan {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 2px;
    animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px var(--gold-solid);
    }
}

/* About Section */
.about-section {
    padding: 65px 6.5% 65px;
    background: radial-gradient(circle at left center, rgba(204, 129, 26, 0.15) 0%, #000000 50%);
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.about-container {
    width: min(1400px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.about-left {
    max-width: 700px;
}

.about-left h2 {
    font-size: clamp(2.05rem, 2.25vw, 36px);
    margin-bottom: 28px;
    line-height: 1.28;
    letter-spacing: 0;
    color: #ffffff;
    text-shadow: 0 2px 0 rgba(178, 126, 40, 0.42), 0 16px 34px rgba(0, 0, 0, 0.55);
}

.about-left p {
    color: #c6c6c6;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 520px;
}

.about-left .cursive-text {
    color: #d6a24a;
    font-size: 39px;
    line-height: 1;
    margin-top: 12px;
    text-shadow: 0 0 16px rgba(214, 162, 74, 0.2);
}

.about-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-items: center;
}

.feature-item {
    text-align: center;
    width: 180px;
    min-height: 150px;
    position: relative;
    transition: transform 0.3s;
}

.feature-item:not(:last-child)::after {
    display: none;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .icon-wrap {
    width: 84px;
    height: 72px;
    margin: 0 auto 18px;
    border-left: 1px solid rgba(214, 162, 74, 0.72);
    border-right: 1px solid rgba(214, 162, 74, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    font-size: 1.85rem;
    color: #d7a24b;
    background: linear-gradient(145deg, rgba(214, 162, 74, 0.16), rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0.16));
    box-shadow: 0 0 30px rgba(214, 162, 74, 0.08);
}

.feature-item h3 {
    font-size: 1rem;
    line-height: 1.45;
    letter-spacing: 1.6px;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
}

/* Collection Section */
.collection-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)), url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(201, 158, 82, 0.1);
    border-bottom: 1px solid rgba(201, 158, 82, 0.1);
}

.section-subtext {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 5%;
    margin-bottom: 50px;
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--gold-solid);
    color: var(--gold-solid);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--gold-solid);
    color: #000;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    max-width: 1550px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.carousel-slide {
    flex: 0 0 calc(20% - 24px);
    /* 5 items visible */
    cursor: pointer;
    border-radius: 0;
    overflow: hidden;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-slide:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(201, 158, 82, 0.2);
    z-index: 10;
    border-color: rgba(201, 158, 82, 0.5);
}

.carousel-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: filter 0.5s ease;
    filter: brightness(0.9);
}

.carousel-slide:hover img {
    filter: brightness(1.15);
}

.slide-label {
    background: #000000;
    padding: 18px 0;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    font-size: 0.85rem;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-slide:hover .slide-label {
    background: rgba(201, 158, 82, 0.1);
    color: var(--gold-solid);
    border-top: 1px solid var(--gold-solid);
}

/* Transform Section */
.transform-section {
    position: relative;
    padding: 60px 2%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 45vh;
}

.transform-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.transform-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: left;
}

.timeless-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-solid);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.line-small {
    width: 30px;
    height: 1px;
    background: var(--gold-solid);
}

.transform-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.transform-content .desc {
    color: #ddd;
    margin-bottom: 30px;
    font-size: 0.95rem;
}



/* Process Section */
.process-section {
    padding: 80px 5%;
    background: radial-gradient(circle at center, rgba(204, 129, 26, 0.1) 0%, #000000 60%);
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    flex-wrap: nowrap;
    gap: 25px;
    width: min(1500px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.step {
    flex: 1;
    min-width: 180px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 15px 25px;
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 158, 82, 0.25);
    clip-path: polygon(50% 0%, 100% 12%, 100% 100%, 0% 100%, 0% 12%);
    z-index: -2;
    transition: all 0.4s ease;
}

.step::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.9) 0%, rgb(5 5 5 / 12%) 100%);
    clip-path: polygon(50% 0%, 100% 12%, 100% 100%, 0% 100%, 0% 12%);
    z-index: -1;
}

.step:hover {
    transform: translateY(-5px);
}

.step:hover::before {
    background: var(--gold-solid);
    box-shadow: 0 0 15px rgba(201, 158, 82, 0.3);
}

.step .screw {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(201, 158, 82, 0.4);
    z-index: 10;
}

.step .screw-left {
    top: 15%;
    left: 12px;
}

.step .screw-right {
    top: 15%;
    right: 12px;
}

.step-icon-wrapper {
    position: relative;
    color: var(--gold-solid);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-num {
    position: absolute;
    bottom: -6px;
    right: -12px;
    font-size: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #000;
    background: var(--gold-solid);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.step h4 {
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
}

.step p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-solid);
    font-size: 1rem;
    opacity: 0.4;
    padding: 0 5px;
}

@media (max-width: 992px) {
    .process-steps {
        flex-wrap: wrap;
    }

    .step-arrow {
        display: none;
    }

    .step {
        min-width: 250px;
        max-width: 300px;
        margin-bottom: 20px;
    }
}

/* Footer */
.footer {
    background-color: #030303;
    padding: 80px 5% 20px;
    border-top: 1px solid rgba(201, 158, 82, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin: 0 auto 60px;
    width: min(1600px, 100%);
}

.footer-logo {
    height: 150px;
    margin-bottom: 20px;
}

.brand-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-links a:hover {
    border-color: var(--gold-solid);
    color: var(--gold-solid);
}

.footer-col h4 {
    color: var(--gold-solid);
    margin-bottom: 25px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--gold-solid);
}

.contact-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-col ul li i {
    color: var(--gold-solid);
    margin-top: 4px;
}

.btn-whatsapp {
    display: inline-block;
    background-color: var(--gold-solid);
    color: #000;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background-color: #FFE194;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom i {
    color: var(--gold-solid);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for feature items and carousel */
.about-right .feature-item:nth-child(1) {
    transition-delay: 0.1s;
}

.about-right .feature-item:nth-child(2) {
    transition-delay: 0.2s;
}

.about-right .feature-item:nth-child(3) {
    transition-delay: 0.3s;
}

.about-right .feature-item:nth-child(4) {
    transition-delay: 0.4s;
}

.carousel-slide:nth-child(1) {
    animation: floatSubtle 3s infinite alternate 0s;
}

.carousel-slide:nth-child(2) {
    animation: floatSubtle 3s infinite alternate 0.5s;
}

.carousel-slide:nth-child(3) {
    animation: floatSubtle 3s infinite alternate 1s;
}

.carousel-slide:nth-child(4) {
    animation: floatSubtle 3s infinite alternate 1.5s;
}

.carousel-slide:nth-child(5) {
    animation: floatSubtle 3s infinite alternate 2s;
}

@keyframes floatSubtle {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 70px;
        text-align: center;
    }

    .about-left {
        max-width: 720px;
        margin: 0 auto;
    }

    .about-left p {
        margin: 0 auto;
    }

    .about-right {
        width: min(720px, 100%);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px 70px;
        justify-items: center;
    }

    .feature-item:not(:last-child)::after {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content .main-title .text-3d {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-action {
        display: none;
    }

    .logo img {
        height: 54px;
        padding: 5px 8px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content .main-title .text-3d {
        font-size: 4rem;
    }

    .hero-content .main-title .subtitle {
        font-size: 1rem;
        letter-spacing: 8px;
    }

    .slogan-container .cursive-slogan {
        font-size: 2rem;
    }

    .slogan-container .serif-slogan {
        font-size: 1.5rem;
    }

    .about-right {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
        justify-items: center;
    }

    .about-section {
        padding: 72px 7% 82px;
    }

    .about-left h2 {
        font-size: 1.85rem;
    }

    .about-left p {
        font-size: 0.98rem;
    }

    .feature-item {
        width: 100%;
        max-width: 160px;
    }

    .feature-item h3 {
        font-size: 0.85rem;
    }

    .carousel-slide {
        flex: 0 0 80%;
    }

    .carousel-slide img {
        height: 280px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        height: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-desc {
        margin: 0 auto 20px;
    }

    .social-links,
    .contact-col ul li {
        justify-content: center;
    }

    .transform-section {
        justify-content: center;
        padding: 80px 5%;
    }

    .transform-content {
        margin: 0 auto;
        text-align: center;
        padding-left: 15px;
        width: 100%;
    }

    .timeless-text {
        justify-content: center;
    }

    .transform-overlay {
        background: rgba(0, 0, 0, 0.7);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
}