/* 
Name: SITENAME - Midnight Luxe Edition
Theme: Luxury Fashion
Version: 1.0

/////////////////////

--------------------*
Table of Contents 
--------------------*

1.0 Reset
    1.1 Typography
    1.2 Links
    1.3 Buttons
    1.4 Basic Reset
2 Header + Navbar
    2.1 Navbar
    2.2 Header
3 About
4 Pricing Plans
5 Call To Action
6 Testimonial
7 Blog
8 Contact
9 Footer
10 Animations & Keyframes

/////////////////////
*/

/* ============================================
   1.0 Reset
   ============================================ */

:root {
    --primary-dark: #0a1628;
    --primary-deep: #0f1f3a;
    --primary-mid: #162a4a;
    --primary-light: #1e3a5f;
    --accent: #d4a853;
    --accent-light: #e2c07a;
    --accent-dark: #b8912e;
    --accent-glow: rgba(212, 168, 83, 0.15);
    --off-white: #f5f2ed;
    --off-white-dark: #ebe6de;
    --off-white-darker: #ddd6cb;
    --text-primary: #f5f2ed;
    --text-body: #c8c3bb;
    --text-muted: #9a9590;
    --white: #ffffff;
    --black: #000000;
    --shadow-gold: rgba(212, 168, 83, 0.12);
    --shadow-gold-strong: rgba(212, 168, 83, 0.25);
    --shadow-dark: rgba(10, 22, 40, 0.4);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden !important;
    color: var(--text-body);
    background-color: var(--primary-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    height: auto;
    width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

ul > li {
    list-style: none;
    line-height: 1.8;
}

/* ============================================
   1.1 Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
    letter-spacing: -0.01em;
}

@media screen and (min-width: 768px) {
    h1 {
        line-height: 1.1;
        margin-bottom: 1rem;
    }
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.3;
}

h5 {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
}

h6 {
    font-size: .87rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

p {
    font-size: 1rem;
    line-height: 1.85rem;
    letter-spacing: .3px;
    color: var(--text-body);
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ============================================
   1.2 Links
   ============================================ */

a {
    color: var(--accent);
    transition: all .4s ease;
    text-decoration: none;
}

a:hover, a:focus {
    color: var(--accent-light);
    text-decoration: none;
    outline: none;
}

/* ============================================
   1.3 Buttons
   ============================================ */

.btn {
    background-color: transparent;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    padding: 14px 36px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 0;
    transition: all .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    transition: left .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.btn:hover::before, .btn:focus::before {
    left: 0;
}

.btn:hover, .btn:focus {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--primary-dark);
    transform: none;
}

.btn.btn-filled {
    background-color: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

.btn.btn-filled:hover {
    background-color: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--primary-dark);
}

/* ============================================
   1.4 Basic Reset - Spacing Utilities
   ============================================ */

.pd-120 { padding: 120px 0; }
.pd-100 { padding: 100px 0; }
.pd-80 { padding: 80px 0; }

.pt-100 { padding-top: 100px !important; }
.pb-80 { padding-bottom: 80px !important; }

.bg-color {
    background-color: var(--primary-deep);
}

.home-wrapper {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.home-center {
    position: relative;
    display: table;
    width: 100%;
    height: 100%;
}

.home-center-desc {
    display: table-cell;
    vertical-align: middle;
}

.opa {
    position: relative;
    z-index: 1;
}

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

.section-title {
    margin-bottom: 1rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    color: var(--white);
    font-size: 2.5rem;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 20px auto 0;
}

.section-title p {
    color: var(--text-muted);
}

.color {
    color: var(--accent) !important;
}

@media (min-width: 768px) {
    h1 { font-size: 5rem; }
    h2 { font-size: 2.8rem; }

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

/* ============================================
   2.1 Navbar
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 24px 15px;
    z-index: 1030;
    margin-bottom: 0;
    background-color: transparent;
    transition: all .5s ease-in-out;
}

.navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar .navbar-brand:hover {
    color: var(--accent);
}

.navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.75);
    margin-left: 5px;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item .nav-link.active::after {
    width: 100%;
}

.navbar .nav-item .nav-link.active,
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus {
    color: var(--accent);
}

.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown .dropdown-menu:hover {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: visibility 0s, opacity 0.3s linear;
}

.navbar .dropdown-menu {
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: 0 15px 40px var(--shadow-dark);
    background-color: var(--primary-deep);
    padding: 10px 0;
    border: 1px solid rgba(212, 168, 83, 0.1);
}

.navbar .dropdown-item {
    color: var(--text-body);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.navbar .dropdown-item:hover {
    background-color: rgba(212, 168, 83, 0.08);
    color: var(--accent);
}

/* Sticky navbar */
.sticky {
    background-color: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all .5s ease-in-out;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(212, 168, 83, 0.08);
}

.sticky .navbar-brand {
    color: var(--white);
}

/* Navbar button (Appointment) */
.navbar-nav .nav-item .nav-link.btn {
    background-color: transparent;
    color: var(--accent) !important;
    border: 1px solid var(--accent);
    padding: 8px 24px;
    border-radius: 0;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}

.navbar-nav .nav-item .nav-link.btn::after {
    display: none;
}

.navbar-nav .nav-item .nav-link.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    transition: left .4s ease;
    z-index: -1;
}

.navbar-nav .nav-item .nav-link.btn:hover::before {
    left: 0;
}

.navbar-nav .nav-item .nav-link.btn:hover {
    color: var(--primary-dark) !important;
    border-color: var(--accent);
}

.sticky .navbar-nav .nav-item .nav-link.btn {
    border-color: var(--accent);
    color: var(--accent) !important;
}

@media only screen and (max-width: 768px) {
    .navbar {
        background-color: rgba(10, 22, 40, 0.97);
        padding: 12px 15px;
    }

    .navbar-nav .nav-item .nav-link::after {
        display: none;
    }
}

/* Toggler */
.navbar-toggler {
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212,168,83,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   2.2 Header / Hero
   ============================================ */

.home-1 .sub-header h5 {
    font-size: 13px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.home-wrapper {
    background-color: var(--primary-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.home-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.home-wrapper .sub-img img {
    position: relative;
    width: 90%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.05);
    border-radius: var(--radius-sm);
}

.home-wrapper .sub-img {
    position: relative;
}

.home-wrapper .sub-img::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    opacity: 0.3;
    border-radius: var(--radius-sm);
    z-index: -1;
}

.home-wrapper .sub-header h1 {
    color: var(--white);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1.05;
}

.home-wrapper .sub-header .btn {
    margin-top: 10px;
}

@media (max-width: 767.98px) {
    .home-wrapper .sub-img img {
        width: 100%;
    }

    .home-wrapper .sub-img::before {
        display: none;
    }

    .home-wrapper {
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

@media (min-width: 768px) {
    .home-wrapper {
        min-height: 100vh;
    }
}

@media only screen and (min-width: 1140px) {
    .home-wrapper .sub-img {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
    }

    .home-wrapper .sub-img img {
        max-height: 70vh;
        width: auto;
        max-width: 100%;
    }
}

/* ============================================
   3 About
   ============================================ */

.about {
    background-color: var(--off-white);
    position: relative;
}

.about h2,
.about h4 {
    color: var(--primary-dark);
}

.about p,
.about .text-muted {
    color: #6b6560 !important;
}

.about-thumb {
    position: relative;
}

.about-thumb img {
    border-radius: var(--radius-sm);
    filter: brightness(0.95) contrast(1.02);
}

.about-content .line {
    font-weight: 500;
    color: var(--accent-dark);
    font-size: 1.05rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

.about-content h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
}

.about-content ul > li {
    padding: 5px 0;
    color: #4a4540;
    font-size: 0.95rem;
}

.about-content ul > li i.color {
    color: var(--accent-dark) !important;
    font-size: 6px;
    vertical-align: middle;
}

.about .btn {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.about .btn::before {
    background-color: var(--primary-dark);
}

.about .btn:hover {
    color: var(--white);
    border-color: var(--primary-dark);
}

.about-thumb .small-img-1,
.about-thumb .small-img-3 {
    width: 200px;
}

.about-thumb .small-img-1 img,
.about-thumb .small-img-3 img {
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.15);
    border: 3px solid var(--white);
}

.about-thumb .small-img-2 img {
    height: 400px;
    object-fit: cover;
    object-position: right center;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.2);
}

@media (max-width: 479.98px) {
    .about-thumb .small-img-1,
    .about-thumb .small-img-3 {
        width: 100%;
    }

    .about-thumb .small-img-2 img {
        height: auto;
    }
}

@media (min-width: 768px) {
    .about-thumb {
        margin: 80px auto;
    }

    .about-thumb .small-img-1 {
        position: absolute;
        top: -100px;
        left: 0;
        z-index: 2;
        width: 200px;
    }

    .about-thumb .small-img-2 {
        width: 80%;
        margin: 0 auto;
    }

    .about-thumb .small-img-3 {
        position: absolute;
        bottom: -100px;
        right: 0;
        z-index: 2;
        width: 200px;
    }
}

/* ============================================
   4 Pricing Plan
   ============================================ */

.price {
    background-color: var(--primary-dark);
    position: relative;
}

.price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-item {
    background-color: var(--primary-deep);
    border-radius: 0;
    padding: 30px 32px;
    border-left: 2px solid var(--accent);
    border-top: none;
    border-right: none;
    border-bottom: none;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-item:hover {
    background-color: var(--primary-mid);
    transform: translateX(8px);
}

.pricing-item:hover::after {
    opacity: 0.5;
}

.pricing-item h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 1.15rem;
}

.pricing-item .text-muted {
    color: var(--text-muted) !important;
}

.pricing-item .color,
.price-value .color {
    color: var(--accent) !important;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .pricing-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/* ============================================
   5 Call To Action
   ============================================ */

.call-1 {
    background-color: var(--off-white);
}

.call-1 .call-item {
    height: 420px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px 28px;
    border-radius: 0;
}

.call-1 .call-item-overlay {
    background-color: transparent;
    background-image: linear-gradient(180deg, rgba(10, 22, 40, 0) 30%, var(--primary-dark) 90%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .85;
    z-index: 0;
}

.call-1 .call-item-body p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.call-1 .call-item-body h3,
.call-1 .call-item-body h4 {
    color: var(--white);
}

.call-1 .btn {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
    padding: 10px 28px;
    font-size: 0.75rem;
}

.call-1 .btn::before {
    background-color: var(--accent);
}

.call-1 .btn:hover {
    color: var(--primary-dark);
    border-color: var(--accent);
}

/* ============================================
   6 Testimonial
   ============================================ */

.testimonial.bg-color {
    background-color: var(--primary-deep);
    position: relative;
}

.testimonial.bg-color::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial .section-title h2 {
    color: var(--white);
}

.testimonial .section-title p {
    color: var(--text-muted);
}

.testimonial .swiper-item {
    padding: 20px;
}

.testimonial .swiper-item i.color {
    color: var(--accent) !important;
    opacity: 0.3;
}

.testimonial .swiper-item p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-body);
    font-family: 'Playfair Display', serif;
}

.testimonial .swiper-item h4 {
    color: var(--white);
    font-size: 1.15rem;
}

.swiper-testimonial .swiper-slide img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: 30px auto;
    border: 2px solid var(--accent);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.15);
    filter: brightness(0.95) contrast(1.05);
}

.swiper-testimonial .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-testimonial .swiper-pagination-bullet {
    background-color: transparent;
    margin: 0 6px;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(212, 168, 83, 0.4);
    display: inline-block;
    vertical-align: middle;
    opacity: .5;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-testimonial .swiper-pagination-bullet-active {
    margin: 0 6px;
    opacity: 1;
    border-color: var(--accent);
}

.swiper-testimonial .swiper-pagination-bullet-active:after {
    content: '';
    position: relative;
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    display: block;
    background-color: var(--accent);
    border-radius: 50%;
}

/* ============================================
   7 Blog
   ============================================ */

.blog {
    background-color: var(--primary-dark);
}

.blog .section-title h2 {
    color: var(--white);
}

.blog-item {
    position: relative;
    z-index: 0;
    transition: all .5s ease-in-out;
    overflow: hidden;
    background-color: var(--primary-deep);
}

.blog-thumb {
    overflow: hidden;
    position: relative;
}

.blog-thumb::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    z-index: 5;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-thumb::before {
    transform: scaleX(1);
}

.blog-thumb img {
    z-index: 0;
    transition: all .6s ease-in-out;
    filter: brightness(0.85) contrast(1.05);
}

.blog-thumb img:hover {
    transform: scale(1.08);
    filter: brightness(0.95) contrast(1.05);
}

.blog-content {
    position: relative;
    padding: 28px 22px 30px;
    background-color: var(--primary-deep);
    transition: all .5s ease-in-out;
}

.blog-content h4 a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.blog-content h4 a:hover {
    color: var(--accent);
}

.blog-content .blog-meta .color {
    color: var(--accent) !important;
}

.blog-content .blog-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-content p.text-muted {
    color: var(--text-muted) !important;
    font-size: 0.95rem;
}

.blog-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ============================================
   8 Contact
   ============================================ */

.contact.bg-color {
    background-color: var(--off-white);
}

.contact .section-title h2 {
    color: var(--primary-dark);
}

.contact .section-title p,
.contact .section-title .text-muted {
    color: #6b6560 !important;
}

.contact-custom {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.contact-custom input.form-control {
    height: 52px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid var(--off-white-darker);
    border-radius: 0;
    box-shadow: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-dark);
    background-color: transparent;
    transition: border-color 0.3s ease;
    padding-left: 0;
}

.contact-custom input.form-control:focus {
    border-color: var(--accent-dark);
    box-shadow: none;
    background-color: transparent;
    outline: none;
}

.contact-custom input.form-control::placeholder {
    color: #aaa5a0;
    letter-spacing: 0.5px;
}

.contact-custom textarea.form-control {
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid var(--off-white-darker);
    border-radius: 0;
    box-shadow: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-dark);
    background-color: transparent;
    transition: border-color 0.3s ease;
    resize: vertical;
    padding-left: 0;
}

.contact-custom textarea.form-control:focus {
    border-color: var(--accent-dark);
    box-shadow: none;
    background-color: transparent;
}

.contact-custom textarea.form-control::placeholder {
    color: #aaa5a0;
    letter-spacing: 0.5px;
}

.contact-custom .btn.btn-form {
    background-color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 0;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
}

.contact-custom .btn.btn-form::before {
    background-color: var(--accent);
}

.contact-custom .btn.btn-form:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

/* ============================================
   9 Footer
   ============================================ */

footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(212, 168, 83, 0.08);
}

footer .footer-top {
    margin: 0 !important;
    padding: 80px 0 50px;
}

footer .footer-item {
    padding: 20px 0;
}

footer .footer-item ul > li {
    margin: 8px auto;
}

footer .footer-item ul > li a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

footer .footer-item ul > li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

footer .footer-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 16px;
    letter-spacing: 1px;
}

footer .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.8;
}

footer p span {
    color: rgba(255, 255, 255, 0.7);
}

footer .payment-methods img {
    max-width: 220px;
    opacity: 0.5;
    filter: brightness(1.5) grayscale(100%);
    transition: opacity 0.3s ease;
}

footer .payment-methods img:hover {
    opacity: 0.8;
}

/* Footer bottom bar */
footer .footer-main.bg-color {
    background-color: rgba(10, 22, 40, 0.5) !important;
    border-top: 1px solid rgba(212, 168, 83, 0.06);
}

footer .footer-main p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

footer .footer-main a {
    color: var(--accent);
}

footer .footer-main a:hover {
    color: var(--accent-light);
}

footer .footer-site li a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

footer .footer-site li a:hover {
    color: var(--accent);
    padding-left: 0;
}

footer .footer-copy p {
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   10 Animations & Keyframes
   ============================================ */

/* Fade-in-up animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Subtle gold line decoration */
.gold-line {
    width: 60px;
    height: 1px;
    background-color: var(--accent);
    display: block;
    margin: 20px 0;
}

.gold-line-center {
    width: 60px;
    height: 1px;
    background-color: var(--accent);
    display: block;
    margin: 20px auto;
}

/* Hover reveal animation for images */
.reveal-hover {
    overflow: hidden;
    position: relative;
}

.reveal-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.reveal-hover:hover::after {
    opacity: 1;
}

/* ============================================
   Global Selection Color
   ============================================ */

::selection {
    background-color: var(--accent);
    color: var(--primary-dark);
}

::-moz-selection {
    background-color: var(--accent);
    color: var(--primary-dark);
}

/* ============================================
   Scrollbar Styling
   ============================================ */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 83, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============================================
   Smooth scroll behavior
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* Form message states */
.form-message.success {
    color: #4caf50;
    margin-top: 15px;
    font-size: 0.9rem;
}

.form-message.error {
    color: #e74c3c;
    margin-top: 15px;
    font-size: 0.9rem;
}