* {
    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 2.5rem;
    border: none;
    border-radius: 50px;
    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 2.5rem;
    border: 2px solid #d8aa2b;
    border-radius: 50px;
    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-size: 1.1rem;
    font-style: italic;
    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: 100px 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);
    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: 0 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 {
    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 {
    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-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 {
    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 {
    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;
    }
}

/* Testimonials section */
.test-section {
    width: 100%;
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(216, 170, 43, 0.2);
}

.test-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    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: 80px;
}

.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;
}

/* Sliding testimonials styles */
.test-slider {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.test-slider::before,
.test-slider::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 8rem;
    z-index: 2;
}

.test-slider::before {
    left: 0;
    background: linear-gradient(to right, #1d1d1f 0%, transparent 100%);
}

.test-slider::after {
    right: 0;
    background: linear-gradient(to left, #1d1d1f 0%, transparent 100%);
}

.test-cards {
    list-style: none;
    width: calc(350px * 10);
    display: flex;
    animation: slideTestimonials 120s linear infinite;
    gap: 30px;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 5 - 150px));
    }
}

.test-card {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(216, 170, 43, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.test-card:hover {
    transform: translateY(-10px);
    border-color: #d8aa2b;
    box-shadow: 0 20px 40px rgba(216, 170, 43, 0.2);
}

.test-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.test-card-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #d8aa2b;
}

.test-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-card-info h4 {
    color: #d8aa2b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.test-card-info p {
    font-family: Lato, sans-serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.test-card-quote {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.test-card-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 60px;
    color: #d8aa2b;
    opacity: 0.3;
    font-family: serif;
}

.test-card-quote p {
    color: #fff;
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    text-align: left;
}

.test-card-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(216, 170, 43, 0.2);
}

.test-card-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

.test-card-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.test-card-company {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

/* Logo colors */
.test-logo-red {
    background: #e53e3e;
}

.test-logo-blue {
    background: #2b6cb0;
}

.test-logo-green {
    background: #38a169;
}

.test-logo-gold {
    background: gold;
}

.test-logo-purple {
    background: purple;
}

/* Highlights Section Styles */
.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;
    color: #d8aa2b;
    margin-bottom: 50px;
    text-align: center;
}

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

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    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-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .test-section {
        padding: 80px 20px;
    }

    .test-slider {
        height: 380px;
    }

    .test-card {
        width: 320px;
        height: 320px;
        padding: 25px;
    }

    .test-cards {
        width: calc(320px * 10);
        animation: slideTestimonials 60s linear infinite;
    }

    @keyframes slideTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-320px * 5 - 150px));
        }
    }
}

@media (max-width: 768px) {
    .test-section {
        padding: 60px 15px;
    }

    .test-slider {
        height: 360px;
    }

    .test-card {
        width: 280px;
        height: 300px;
        padding: 20px;
    }

    .test-cards {
        width: calc(280px * 10);
        animation: slideTestimonials 60s linear infinite;
    }

    @keyframes slideTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 5 - 150px));
        }
    }

    .test-card-quote p {
        font-size: 14px;
    }

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

@media (max-width: 480px) {
    .test-section {
        padding: 50px 10px;
    }

    .test-slider {
        height: 340px;
    }

    .test-card {
        width: 260px;
        height: 280px;
        padding: 18px;
    }

    .test-cards {
        width: calc(260px * 10);
        animation: slideTestimonials 60s linear infinite;
    }

    @keyframes slideTestimonials {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-260px * 5 - 150px));
        }
    }

    .test-card-avatar {
        width: 50px;
        height: 50px;
    }

    .test-card-info h4 {
        font-size: 14px;
    }

    .test-card-info p {
        font-size: 12px;
    }

    .test-card-quote p {
        font-size: 13px;
    }

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

/* Footer Main */
.footer-main {
    background: #1d1d1f;
    min-height: 50vh;
    color: #f5f5f7;
    display: flex;
    align-items: center;
}

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

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Company Section */
.footer-company {
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 100px;
    height: 86px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-description {
    color: #a1a1a6;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Navigation Links */
.footer-section h3 {
    color: #f5f5f7;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #a1a1a6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: block;
    padding: 4px 0;
}

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

/* Contact Information */
.footer-contact h3 {
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    color: #d8aa2b;
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #f5f5f7;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    color: #a1a1a6;
    font-size: 0.95rem;
    margin: 0;
}

.contact-details a {
    color: #a1a1a6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #d8aa2b;
}

/* Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(216, 170, 43, .2);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #2d2d30;
    border-radius: 50%;
    color: #a1a1a6;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #d8aa2b;
    color: #1d1d1f;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    color: #86868b;
    font-size: 0.9rem;
}

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

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d8aa2b;
    color: #1d1d1f;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(216, 170, 43, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

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

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

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-company {
        grid-column: 1 / -1;
        max-width: none;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 60px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        justify-content: center;
        gap: 40px;
        margin-bottom: 40px;
        text-align: center;
    }

    .footer-company {
        grid-column: auto;
        margin-bottom: 0;
    }

    .footer-social {
        gap: 20px;
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .contact-info {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
    }

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

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 40px 15px 20px;
    }

    .footer-description {
        font-size: 1rem;
    }

    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

