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

body {
    font-family: "EB Garamond", serif;
    overflow-x: hidden;
    background: #1d1d1f;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none;
}

button {
    font-family: Lato, sans-serif;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    /* justify-content: center; */
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    font-family: Lato, sans-serif;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #d8aa2b 0%, #f4c842 100%);
    color: #000;
    padding: 1rem 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(216, 170, 43, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #d8aa2b;
    padding: 1rem 20px;
    border: 2px solid #d8aa2b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #d8aa2b;
    color: #000;
    transform: translateY(-2px);
}

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

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

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

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(10deg);
    }

    66% {
        transform: translateY(-10px) rotate(-5deg);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Navbar Styles */
.nav-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    border-bottom: 1px solid rgb(216, 170, 43, .2);
    transition: all 0.3s ease;
}

.nav-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 5px 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    width: 100px;
    height: 86px;
    width: auto;
    transition: all 0.3s ease;
}

/* Desktop Navigation Links */
.nav-desktop-links {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-desktop-link a {
    color: #d8aa2b;
    text-decoration: none;
    font-family: Lato, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}


.nav-desktop-link a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d8aa2b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile Menu Toggle */
.nav-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-bar {
    width: 40px;
    height: 3px;
    background-color: #d8aa2b;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Show desktop links and hide mobile toggle on wider screens */
@media (min-width: 1001px) {
    .nav-desktop-links {
        display: flex;
    }
    
    .nav-menu-toggle {
        display: none;
    }
}

/* Menu toggle animations */
.nav-menu-toggle.nav-active .nav-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 2px);
}

.nav-menu-toggle.nav-active .nav-bar:nth-child(2) {
    transform: rotate(45deg) translate(-5px, -2px);
}

/* Mobile Dropdown Menu */
.nav-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.nav-dropdown.nav-open {
    transform: translateY(0);
}

.nav-links {
    list-style: none;
    text-align: center;
}

.nav-link {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.nav-dropdown.nav-open .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-dropdown.nav-open .nav-link:nth-child(1) {
    transition-delay: 0.1s;
}
.nav-dropdown.nav-open .nav-link:nth-child(2) {
    transition-delay: 0.2s;
}
.nav-dropdown.nav-open .nav-link:nth-child(3) {
    transition-delay: 0.3s;
}
.nav-dropdown.nav-open .nav-link:nth-child(4) {
    transition-delay: 0.4s;
}
.nav-dropdown.nav-open .nav-link:nth-child(5) {
    transition-delay: 0.5s;
}

.nav-link a {
    color: #d8aa2b;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link a:hover {
    color: #fff;
    transform: scale(1.1);
}

.nav-link a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d8aa2b;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        padding: 1rem;
    }

    .nav-logo {
        height: 80px;
        width: 73px;
    }

    .nav-menu-toggle {
        width: 25px;
        height: 25px;
    }

    .nav-bar {
        width: 30px;
        height: 2px;
    }
    
    .nav-link a {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-link a {
        font-size: 1.2rem;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 120px 20px;
    background-image: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(26, 26, 26, 0.6) 50%,
            rgba(0, 0, 0, 0.7) 100%
        ),
        url(../images/chair1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.8) 40%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0, 0, 0, 0.5) 80%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    /* min-height: 100vh; */
}

.hero-content {
    width: 60%;
    max-width: none;
    animation: heroSlideIn 1s ease-out;
    position: relative;
    z-index: 3;
}

.hero-title {
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #d8aa2b 50%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #d8aa2b;
    margin-bottom: 2rem;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-family: Lato, sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-verse {
    position: absolute;
    bottom: 4rem;
    right: 2rem;
    padding: 0 1rem;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(216, 170, 43, 0.8);
    font-style: italic;
    font-size: 1.2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
    z-index: 3;
    margin-top: 30px;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-section .btn-group {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        text-align: center;
        padding: 1.5rem;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 0.5) 100%
        );
    }

    .hero-verse {
        bottom: 2rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 1rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .hero-container {
        padding: 0 4rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-title,
    .hero-description {
        animation: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-title,
    .hero-description {
        text-shadow: none;
    }
}

.service-section {
    min-height: 100vh;
    position: relative;
    padding: 100px 40px;
    border-bottom: 1px solid rgba(216, 170, 43, 0.2);
}

.serv-header {
    text-align: center;
    margin-bottom: 20px;
}

.serv-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    color: #d8aa2b;
}

.serv-subtitle {
    font-size: 1rem;
    color: #666;
}

.serv-cards-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px;
}

.serv-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.serv-card:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 6;
}

.serv-card:nth-child(2) {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    z-index: 7;
    top: 100px;
}

.serv-card:nth-child(3) {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    z-index: 8;
    top: 120px;
}

.serv-card:nth-child(4) {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    z-index: 9;
    top: 140px;
}

.serv-card:nth-child(5) {
    background: linear-gradient(135deg, #d8aa2b 0%, #b8921f 100%);
    z-index: 10;
    top: 160px;
}

.serv-card:hover {
    transform: scale(1.02);
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0%,
    100% {
        box-shadow: 0 0 30px rgba(216, 170, 43, 0.3);
    }

    50% {
        box-shadow: 0 0 60px rgba(216, 170, 43, 0.6);
    }
}

@keyframes floatAnimation {
    0%,
    100% {
        transform: translateY(0px);
    }

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

.serv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.serv-card-header-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.serv-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #d8aa2b;
    transition: all 0.4s ease;
    animation: floatAnimation 3s ease-in-out infinite;
    flex-shrink: 0;
}

.serv-card:nth-child(5) .serv-card-icon {
    color: #fff;
}

.serv-card:hover .serv-card-icon {
    transform: rotate(360deg) scale(1.1);
}

.serv-card-title {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.serv-card:nth-child(5) .serv-card-title {
    color: #fff;
}

.serv-card-number {
    font-size: 2.5rem;
    font-weight: 100;
    color: rgba(216, 170, 43, 0.4);
    line-height: 1;
    flex-shrink: 0;
}

.serv-card:nth-child(5) .serv-card-number {
    color: rgba(255, 255, 255, 0.5);
}

.serv-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    transition: all 0.4s ease;
}

.serv-card-left {
    display: flex;
    flex-direction: column;
}

.serv-card-tagline {
    font-size: 1.2rem;
    color: #d8aa2b;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 500;
}

.serv-card:nth-child(5) .serv-card-tagline {
    color: #fff;
    opacity: 0.9;
}

.serv-card-description {
    font-family: Lato, sans-serif;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.serv-card:nth-child(5) .serv-card-description {
    color: #fff;
    opacity: 0.9;
}

.serv-card:nth-child(5) .serv-card-cta {
    background: #fff;
    color: #d8aa2b;
}

.serv-card-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216, 170, 43, 0.3);
}

.serv-card:nth-child(5) .serv-card-cta:hover {
    background: #f0f0f0;
}

.serv-card-right {
    padding-left: 30px;
}

.serv-card-features {
    margin-bottom: 30px;
}

.serv-card-features h4 {
    color: #d8aa2b;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.serv-card:nth-child(5) .serv-card-features h4 {
    color: #fff;
}

.serv-feature-list {
    list-style: none;
}

.serv-feature-list li {
    font-family: Lato, sans-serif;
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.serv-card:nth-child(5) .serv-feature-list li {
    color: #fff;
    opacity: 0.9;
}

.serv-feature-list li::before {
    content: "🗸";
    position: absolute;
    left: 0;
    color: #d8aa2b;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.serv-card:nth-child(5) .serv-feature-list li::before {
    color: #fff;
}

.serv-card:hover .serv-feature-list li::before {
    transform: translateX(5px);
}

.serv-card:hover .serv-feature-list li {
    color: #333;
}

.serv-card:nth-child(5):hover .serv-feature-list li {
    color: #fff;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .service-section {
        padding: 100px 20px;
    }

    .serv-title {
        font-size: 2rem;
    }

    .serv-subtitle {
        font-size: 1rem;
    }

    .serv-card {
        padding: 40px 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .serv-card-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .serv-card-right {
        padding-left: 0;
    }

    .serv-card-header {
        gap: 20px;
    }

    .serv-card-title {
        font-size: 1.2rem;
    }

    .serv-card-header-left {
        gap: 20px;
    }

    .serv-card-icon {
        font-size: 1.5rem;
    }

    .serv-card.stacked .serv-card-icon {
        font-size: 1.2rem;
    }

    .serv-card-number {
        font-size: 2rem;
    }

    .serv-feature-list li::before {
        position: static;
        margin-right: 5px;
    }

    .serv-card-cta {
        margin: 0 auto;
    }
}

.cust-section {
    min-height: 100vh;
    /* background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%); */
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(216, 170, 43, 0.2);
}

.cust-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cust-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.cust-content {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 50px;
}

.cust-content.cust-animate {
    opacity: 1;
    transform: translateX(0);
}

.cust-image-container {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

.cust-image-container.cust-animate {
    opacity: 1;
    transform: translateX(0);
}

.cust-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    color: #d8aa2b;
    margin-bottom: 1rem;
}

.cust-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
}

.cust-description {
    font-family: Lato, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #e0e0e0;
    line-height: 1.7;
}

.cust-list {
    margin-bottom: 20px;
}

.cust-list-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-left: 3px solid transparent;
    padding-left: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cust-bullet {
    width: 8px;
    height: 8px;
    background: #d8aa2b;
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 8px;
    flex-shrink: 0;
}

.cust-list-text {
    font-family: Lato, sans-serif;
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cust-serve-section {
    margin-top: 40px;
}

.cust-serve-title {
    font-size: 1.3rem;
    color: #d8aa2b;
    margin-bottom: 10px;
    font-weight: 600;
}

.cust-serve-list {
    margin-left: 0;
}

.cust-serve-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.cust-serve-item:hover {
    transform: translateX(15px);
}

.cust-serve-check {
    color: #d8aa2b;
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cust-serve-text {
    font-family: Lato, sans-serif;
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cust-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
}

.cust-decorative-elements {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(216, 170, 43, 0.1), transparent);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 975px) {
    .cust-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cust-content {
        order: 2;
        transform: translateY(50px);
        text-align: center;
    }

    .cust-content.cust-animate {
        transform: translateY(0);
    }

    .cust-image-container {
        order: 1;
        transform: translateY(-50px);
    }

    .cust-image-container.cust-animate {
        transform: translateY(0);
    }

    .cust-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .cust-subtitle {
        font-size: 1.3rem;
        text-align: center;
    }

    .cust-image-container {
        display: flex;
        justify-content: center;
    }

    .cust-image {
        height: 500px;
        min-width: 250px;
    }

    .cust-serve-grid {
        grid-template-columns: 1fr;
    }

    .cust-section {
        padding: 60px 0;
    }

    .cust-list-item,
    .cust-serve-item {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cust-title {
        font-size: 1.4rem;
    }

    .cust-subtitle {
        font-size: 1.1rem;
    }

    .cust-container {
        padding: 0 15px;
    }

    .cust-image {
        height: 300px;
    }
}

.test-section {
    width: 100%;
    background: #1d1d1f;
    padding: 100px 0 6rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(216, 170, 43, 0.2);
}

.test-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.test-container.test-visible {
    transform: translateY(0);
    opacity: 1;
}

.test-header {
    margin-bottom: 3.5rem;
}

.test-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    color: #d8aa2b;
}

.serv-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.test-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    padding: 1.8rem 0 5rem;
}

.test-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: test-slide 60s linear infinite;
    will-change: transform;
    align-items: flex-start;
    padding-bottom: 20px;
}

.test-slider:hover .test-track {
    animation-play-state: paused;
}

.test-card {
    width: 380px;
    flex-shrink: 0;
    border-radius: 1.5rem;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
}

.test-track .test-card:nth-child(even) {
    transform: translateY(50px);
}

.test-card--named {
    background: linear-gradient(135deg, #252527 0%, #2e2e30 100%);
    border: 1px solid rgba(216, 170, 43, 0.25);
    min-height: 320px;
}

.test-card--anon {
    background: linear-gradient(135deg, #1f1f21 0%, #282829 100%);
    border: 1px solid rgba(216, 170, 43, 0.12);
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.test-card--anon::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 170, 43, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.test-anon-icon {
    font-size: 1.4rem;
    color: rgba(216, 170, 43, 0.3);
    margin-bottom: 1rem;
}

.test-anon-label {
    font-family: Lato, sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 20px;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(216, 170, 43, 0.1);
}

.test-quote-large {
    font-family: "Lato", serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-weight: 400;
    flex: 1;
    position: relative;
}

.test-card--named .test-quote-large {
    margin-bottom: 1.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.test-back-footer {
    border-top: 1px solid rgba(216, 170, 43, 0.2);
    margin-top: 20px;
    padding-top: 1.4rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.test-back-avatar-sm {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    /* border: 2px solid #d8aa2b; */
    flex-shrink: 0;
    overflow: hidden;
}

.test-back-avatar-sm img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.test-back-details h5 {
    font-family: "EB Garamond", serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #d8aa2b;
    margin-bottom: 2px;
}

.test-back-details p {
    font-family: Lato, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

@keyframes test-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.highlights-section {
    margin-top: 80px;
    padding-top: 60px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.test-container.test-visible .highlights-section {
    transform: translateY(0);
    opacity: 1;
}

.highlights-title {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: #d8aa2b;
    margin-bottom: 50px;
    text-align: left;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(216, 170, 43, 0.1);
}

.highlight-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #d8aa2b;
    flex-shrink: 0;
}

.highlight-item p {
    font-family: Lato, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

@media (max-width: 900px) {
    .test-card {
        width: 310px;
    }

    .test-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .test-card {
        width: 270px;
    }

    .test-quote-large {
        font-size: 1.05rem;
    }

    .highlights-title {
        font-size: 20px;
        text-align: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .highlight-item {
        align-items: center;
        text-align: center;
    }

    .highlight-item p {
        font-size: 16px;
        text-align: center;
    }
}

.test-part-wrapper {
    margin-top: 80px;
    padding: 3rem 2rem;
    border-bottom: 1px solid rgba(216, 170, 43, 0.1);
}

.test-partners {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.test-part-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 2rem;
    font-style: italic;
    color: #d8aa2b;
}

.test-part-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    gap: 3rem;
}


.test-part-item {
    flex: 1 1 calc(25% - 3rem);
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 140px;
    max-width: 220px;
}

.test-part-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.test-part-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.06);
}

@media (max-width: 768px) {
    .test-part-title {
        font-size: 20px;
    }

    .test-part-container {
        justify-content: center;
    }

    .test-part-item {
        flex: 1 1 calc(50% - 2rem);
        max-width: 160px;
    }
}
.footer-main {
    width: 100%;
    background: #1d1d1f;
    color: #f5f5f7;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-rule {
    border: none;
    border-top: 1px solid rgba(216, 170, 43, 0.2);
    margin: 0;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-top-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.footer-top-heading h2 {
    font-family: "EB Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: #f5f5f7;
    margin: 0;
}

.footer-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #f5f5f7;
    text-decoration: none;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.footer-arrow-btn:hover {
    border-color: #d8aa2b;
    color: #d8aa2b;
    background: rgba(216, 170, 43, 0.08);
}

.footer-arrow-btn--sm {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
    margin-top: 12px;
}

.footer-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    /* border-bottom: 1px solid rgba(216, 170, 43, 0.15); */
}

.footer-info-col {
    display: flex;
    flex-direction: column;
}

.footer-info-label {
    font-family: Lato, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-info-col p {
    font-family: Lato, sans-serif;
    font-size: 1rem;
    color: #a1a1a6;
    margin: 0 0 6px 0;
    line-height: 1.6;
}

.footer-info-col a {
    color: #f5f5f7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-info-col a:hover {
    color: #d8aa2b;
}

.footer-info-col strong {
    font-weight: 600;
}

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

.footer-logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #a1a1a6;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.22s ease;
}

.social-link:hover {
    border-color: #d8aa2b;
    color: #d8aa2b;
    background: rgba(216, 170, 43, 0.08);
    transform: translateY(-2px);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 70px 0;
}

.footer-newsletter-left h3 {
    font-family: "EB Garamond", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    color: #f5f5f7;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.footer-newsletter-left p {
    font-family: Lato, sans-serif;
    font-size: 1rem;
    color: #a1a1a6;
    line-height: 1.7;
    margin: 0;
}

.footer-newsletter-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-email-input {
    width: 100%;
    padding: 16px 20px;
    background: #2a2a2c;
    border: 1px solid rgba(216, 170, 43, 0.2);
    border-radius: 8px;
    color: #f5f5f7;
    font-family: Lato, sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-email-input:focus {
    border-color: #d8aa2b;
}

.footer-subscribe-btn {
    width: 100%;
    padding: 16px 20px;
    background: #d8aa2b;
    color: #1d1d1f;
    border: none;
    border-radius: 8px;
    font-family: Lato, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.footer-subscribe-btn:hover {
    background: #c49726;
    transform: translateY(-1px);
}

.footer-subscribe-btn:active {
    transform: translateY(0);
}

.footer-privacy-note {
    font-family: Lato, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.footer-copyright {
    font-family: Lato, sans-serif;
    font-size: 0.9rem;
    color: #86868b;
    margin: 0;
}

.footer-copyright a {
    color: #d8aa2b;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    font-family: Lato, sans-serif;
    font-size: 0.9rem;
    color: #86868b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #d8aa2b;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #d8aa2b;
    color: #1d1d1f;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(216, 170, 43, 0.35);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #c49726;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(216, 170, 43, 0.45);
}

@media (max-width: 1024px) {
    .footer-info-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 24px;
    }

    .footer-top {
        padding: 60px 0 50px;
    }

    .footer-top-heading {
        margin-bottom: 40px;
    }

    .footer-info-row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 50px 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px 0;
    }

    .footer-bottom-links {
        gap: 20px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }

    .footer-top-heading h2 {
        font-size: 1.7rem;
    }

    .footer-newsletter-left h3 {
        font-size: 1.7rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .scroll-to-top {
        bottom: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
}
