* {
    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;
    }
}

.abt-hero-section {
    min-height: 100vh;
    background-image: linear-gradient(
            135deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(0, 0, 0, 1) 100%
        ),
        url(../images/chair2.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: rgba(255, 255, 255, .7);
    overflow: hidden;
    /* border-bottom: 1px solid rgba(216, 170, 43, 0.2); */
}

.abt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.abt-hero-container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
}

.abt-hero-content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(50px);
    animation: aboutHeroslideInUp 1.2s ease-out forwards;
}

.abt-hero-label {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    font-style: italic;
    color: #d8aa2b;
    opacity: 0;
    transform: translateY(30px);
    animation: aboutHeroslideInUp 0.8s ease-out 0.3s forwards;
}

.abt-hero-text {
    color: white;
    font-family: Lato, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.3;
    max-width: 100%;
    opacity: 0;
    transform: translateY(40px);
    animation: aboutHeroslideInUp 1s ease-out 0.6s forwards;
}

.abt-hero-highlight {
    font-style: italic;
    color: #d8aa2b;
}

/* Animation */
@keyframes aboutHeroslideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .abt-hero-container {
        padding: 2rem;
    }
}

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

.abt-fndr-section {
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(216, 170, 43, 0.2);
}

.abt-fndr-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.abt-fndr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.abt-fndr-text-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-fndr-text-content.animate {
    opacity: 1;
    transform: translateX(0);
}

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

.abt-fndr-text {
    font-family: Lato, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.abt-fndr-text:last-child {
    margin-bottom: 0;
}

.abt-fndr-image-container {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

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

.abt-fndr-image {
    width: 80%;
    height: 600px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
}

.abt-fndr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Mobile styles */
@media (max-width: 1024px) {
    .abt-fndr-section {
        padding: 60px 0;
    }

    .abt-fndr-container {
        padding: 0 20px;
    }

    .abt-fndr-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-fndr-text-content {
        transform: translateY(-30px);
        order: 2;
        text-align: center;
    }

    .abt-fndr-text-content.animate {
        transform: translateY(0);
    }

    .abt-fndr-image-container {
        transform: translateY(-30px);
        order: 1;
        transition-delay: 0;
    }

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

    .abt-fndr-section-title {
        margin-bottom: 1.5rem;
    }

    .abt-fndr-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .abt-fndr-image {
        height: 400px;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .abt-fndr-section {
        padding: 40px 0;
    }

    .abt-fndr-container {
        padding: 0 15px;
    }

    .abt-fndr-content {
        gap: 30px;
    }

    .abt-fndr-image {
        height: 350px;
        max-width: 250px;
    }
}

.abt-story-section {
    min-height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(216, 170, 43, 0.2);
}

.abt-story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.abt-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.abt-story-text-content {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-story-text-content.animate {
    opacity: 1;
    transform: translateX(0);
}

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

.abt-story-text {
    font-family: Lato, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.abt-story-text:last-child {
    margin-bottom: 0;
}

.abt-story-image-container {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

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

.abt-story-image {
    width: 100%;
    height: 500px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
}

.abt-story-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Mobile styles */
@media (max-width: 1024px) {
    .abt-story-section {
        padding: 60px 0;
    }

    .abt-story-container {
        padding: 0 20px;
    }

    .abt-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-story-text-content {
        transform: translateY(-30px);
        order: 2;
        text-align: center;
    }

    .abt-story-text-content.animate {
        transform: translateY(0);
    }

    .abt-story-image-container {
        transform: translateY(-30px);
        order: 1;
        transition-delay: 0;
    }

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

    .abt-story-section-title {
        margin-bottom: 1.5rem;
    }

    .abt-story-text {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .abt-story-image {
        height: 400px;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .abt-story-section {
        padding: 40px 0;
    }

    .abt-story-container {
        padding: 0 15px;
    }

    .abt-story-content {
        gap: 30px;
    }

    .abt-story-image {
        height: 350px;
        max-width: 250px;
    }
}

.abt-msn-section {
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(216, 170, 43, 0.2);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.abt-msn-section-container {
    max-width: 1400px;
    margin: auto;
}

.abt-msn-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    font-style: italic;
    color: #d8aa2b;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: missionfadeInUp 1s ease-out forwards;
}

.abt-msn-container {
    display: grid;
    grid-template-columns: minmax(350px, 1fr) minmax(350px, 1fr) minmax(350px, 1fr);
    gap: 2rem;
    align-items: start;
    justify-items: center;
}

.abt-msn-card {
    width: 100%;
    max-width: 400px;
    min-height: 600px;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

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

.abt-msn-card:hover::before {
    left: 100%;
}

.abt-msn-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.abt-msn-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.abt-msn-card.purpose {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #d8aa2b;
    animation-delay: 0.2s;
}

.abt-msn-card.mission {
    background: linear-gradient(135deg, #d8aa2b 0%, #e6b82f 100%);
    color: white;
    animation-delay: 0.4s;
}

.abt-msn-card.vision {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: black;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation-delay: 0.6s;
}

.abt-msn-header {
    text-align: left;
    margin-bottom: 2rem;
}

.abt-msn-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.abt-msn-content {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideMissionUp 0.8s ease-out forwards;
}

.abt-msn-card.animate .abt-msn-content {
    animation-delay: 0.3s;
}

.abt-msn-icon {
    margin-top: 50px;
    width: 100px;
    height: 100px;
    display: block;
    text-align: left;
    opacity: 0;
    transform: scale(0);
    animation: missionIconPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.abt-msn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.abt-msn-card.animate .abt-msn-icon {
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .abt-msn-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-msn-title {
       text-align: center;
    }

    .abt-msn-card.vision {
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .abt-msn-container {
        grid-template-columns: minmax(250px, 400px);
        justify-content: center;
        gap: 2.5rem;
    }

    .abt-msn-card {
        max-width: 100%;
        min-height: 380px;
        padding: 2.5rem 2rem;
    }

    .abt-msn-card.vision {
        grid-column: auto;
    }

    .abt-msn-icon {
        font-size: 3rem;
    }

    .abt-msn-title-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .abt-msn-section {
        padding: 2rem 1rem;
    }

    .abt-msn-card {
        padding: 2rem 1.5rem;
        min-height: 350px;
    }
    
}

/* Animations */
@keyframes missionfadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes missionIconPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.abt-vls {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    position: relative;
    border-bottom: 1px solid rgba(216, 170, 43, 0.2);
}

.abt-vls-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.abt-vls-title {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.abt-vls-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.abt-vls-title h2 {
    font-size: 3.5rem;
    font-weight: 300;
    font-style: italic;
    color: #d8aa2b;
    position: relative;
}

.abt-vls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 80px;
    margin-top: 60px;
}

.abt-vls-item {
    text-align: left;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.abt-vls-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.abt-vls-item:nth-child(1) {
    transition-delay: 0.1s;
}
.abt-vls-item:nth-child(2) {
    transition-delay: 0.2s;
}
.abt-vls-item:nth-child(3) {
    transition-delay: 0.3s;
}
.abt-vls-item:nth-child(4) {
    transition-delay: 0.4s;
}
.abt-vls-item:nth-child(5) {
    transition-delay: 0.5s;
}
.abt-vls-item:nth-child(6) {
    transition-delay: 0.6s;
}
.abt-vls-item:nth-child(7) {
    transition-delay: 0.7s;
}

.abt-vls-icon {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(216, 170, 43, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px 0;
    transition: all 0.3s ease;
    background: rgba(216, 170, 43, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.abt-vls-icon i {
    font-size: 2rem;
    color: #d8aa2b;
    transition: all 0.3s ease;
}

.abt-vls-item:hover .abt-vls-icon {
    border-color: rgba(216, 170, 43, 0.6);
    background: rgba(216, 170, 43, 0.1);
    transform: scale(1.05);
}

.abt-vls-item:hover .abt-vls-icon i {
    transform: scale(1.1);
}

.abt-vls-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #d8aa2b;
}

.abt-vls-content p {
    font-family: Lato, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .abt-vls-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 60px;
    }

    .abt-vls-title h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .abt-vls {
        padding: 60px 20px;
    }

    .abt-vls-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .abt-vls-title h2 {
        font-size: 2.5rem;
    }

    .abt-vls-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
        margin: 0 auto;
    }

    .abt-vls-item {
        text-align: center;
    }

    .abt-vls-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .abt-vls-icon i {
        font-size: 1.8rem;
    }

    .abt-vls-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .abt-vls-content p {
        margin: 0 auto;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .abt-vls-title h2 {
        font-size: 2rem;
    }

    .abt-vls-icon {
        width: 60px;
        height: 60px;
    }

    .abt-vls-icon i {
        font-size: 1.5rem;
    }

    .abt-vls-content h3 {
        font-size: 1.2rem;
    }
}

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