/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Elegant Pearl & Gold Theme */
    --pearl-white: #FDFBF9;
    --pearl-cream: #F9F3E9;
    --gold-primary: #C9A86C;
    --gold-light: #E5D5B3;
    --gold-deep: #A67C52;
    --text-rich: #3E3A36;
    --text-soft: #6B625A;
    --bg-light: #FFFFFF;
    --bg-warm: #FDF8F2;
    --border-soft: #EDE5D9;
    --shadow-gold: 0 15px 35px rgba(201, 168, 108, 0.1);
    --shadow-elegant: 0 20px 40px rgba(0, 0, 0, 0.03);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html,
body {
    overflow-x: hidden !important;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-rich);
    background: var(--pearl-white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

.section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
}

/* ========== LOADER ========== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pearl-white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-logo {
    font-size: 2.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--text-rich);
    margin-bottom: 30px;
}

.loader-logo span {
    color: var(--gold-primary);
}

.loader-bar {
    width: 100%;
    height: 2px;
    background: var(--border-soft);
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-primary));
    animation: progress 1.8s ease-in-out forwards;
}

@keyframes progress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ========== COOKIE POPUP ========== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-gold);
    z-index: 1000;
    display: none;
    border: 1px solid var(--gold-light);
}

.cookie-popup.show {
    display: block;
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookie-content i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 480px) {
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .cookie-actions {
        flex-direction: column;
    }
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    flex: 1;
}

.cookie-accept {
    background: var(--gold-primary);
    color: white;
}

.cookie-accept:hover {
    background: var(--gold-deep);
}

.cookie-decline {
    background: var(--border-soft);
    color: var(--text-rich);
}

.cookie-decline:hover {
    background: #dcd1c2;
}

/* ========== AD BAR ========== */
.ad-bar {
    background: var(--text-rich);
    color: var(--pearl-white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.ad-bar.hidden {
    transform: translateY(-100%);
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.ad-hidden {
    top: 0;
}

@media (max-width: 640px) {
    .header {
        top: 50px;
    }
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-rich);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
}

.logo {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--text-rich);
    text-decoration: none;
}

.logo span {
    color: var(--gold-primary);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

@media (min-width: 992px) {
    .nav-desktop {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-rich);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header Right */
.header-right .btn {
    padding: 10px 28px;
    background: var(--gold-primary);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
}

.header-right .btn:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 2000;
    padding: 40px 30px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-logo {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--text-rich);
}

.mobile-logo span {
    color: var(--gold-primary);
}

.mobile-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-soft);
    transition: var(--transition);
}

.mobile-close:hover {
    transform: rotate(90deg);
    color: var(--gold-primary);
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.5s forwards;
}

.nav-mobile li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-mobile li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-mobile li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-mobile li:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-mobile li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-link {
    text-decoration: none;
    color: var(--text-rich);
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--gold-primary);
    padding-left: 10px;
}

.mobile-cta {
    margin-top: 40px;
    display: block;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.5s 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 168, 108, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--text-rich);
    border-color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--pearl-cream) 100%);
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-top: 80px;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 108, 0.15);
    color: var(--gold-deep);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    color: var(--text-rich);
    margin-bottom: 20px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.text-accent {
    color: var(--gold-primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-soft);
    margin-bottom: 30px;
    max-width: 500px;
}

@media (max-width: 992px) {
    .hero-subtitle {
        max-width: 100%;
    }
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
}

.hero-features {
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.hero-feature i {
    color: var(--gold-primary);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: var(--shadow-gold);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-soft);
    z-index: 2;
}

.hero-scroll span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(107, 98, 90, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-rich);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== COLLECTION SHOWCASE ========== */
.collection-showcase {
    background: white;
}

.showcase-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.showcase-subtitle {
    font-size: 1.15rem;
    color: var(--text-soft);
    margin-bottom: 50px;
    line-height: 1.8;
}

.showcase-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .showcase-features {
        grid-template-columns: 1fr;
    }
}

.showcase-feature-item {
    background: var(--pearl-cream);
    padding: 30px 20px;
    border-radius: 20px;
    transition: var(--transition);
}

.showcase-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.showcase-feature-item i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.showcase-feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-rich);
}

.showcase-feature-item p {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.showcase-action {
    background: var(--bg-warm);
    border: 1px solid var(--border-soft);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 640px) {
    .showcase-action {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.showcase-price-block {
    text-align: left;
}

@media (max-width: 640px) {
    .showcase-price-block {
        text-align: center;
    }
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-soft);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-primary);
    font-family: 'Cormorant Garamond', serif;
}

/* ========== PEARLS SECTION ========== */
.pearls {
    background: linear-gradient(135deg, var(--pearl-cream) 0%, white 100%);
}

.pearls-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .pearls-grid {
        grid-template-columns: 1fr;
    }
}

.pearls-text {
    color: var(--text-soft);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.pearls-features {
    display: grid;
    gap: 25px;
}

.pearls-feature {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pearls-feature i {
    font-size: 2rem;
    color: var(--gold-primary);
    width: 50px;
    text-align: center;
}

.pearls-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pearls-feature p {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.pearls-visual {
    position: relative;
    height: 400px;
}

.pearls-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    opacity: 0.3;
}

.pearls-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--gold-light) 2px, transparent 2px);
    background-size: 30px 30px;
}

/* ========== CRAFTSMANSHIP SECTION ========== */
.craft-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .craft-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .craft-grid {
        grid-template-columns: 1fr;
    }
}

.craft-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-soft);
    transition: var(--transition);
}

.craft-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.craft-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.craft-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.craft-card p {
    color: var(--text-soft);
    font-size: 0.9rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--pearl-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    position: relative;
    box-shadow: var(--shadow-elegant);
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--gold-light);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-soft);
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: var(--text-rich);
}

.author-rating {
    color: #FFB800;
}

/* ========== FAQ ========== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: white;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1rem;
    color: var(--text-rich);
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    margin-top: 15px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-deep));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 2rem;
    }
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .btn-primary {
    background: white;
    color: var(--gold-deep);
}

.cta-banner .btn-primary:hover {
    background: var(--pearl-white);
    transform: translateY(-3px);
}

/* ========== FOOTER CONTACT DETAILS ========== */
.footer-contact-details {
    margin-top: 25px;
}

.footer-contact-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-contact-details p i {
    color: var(--gold-primary);
    width: 20px;
    text-align: center;
}

.footer-contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-details a:hover {
    color: var(--gold-primary);
}

.footer-address-main {
    display: flex;
    gap: 12px;
    margin: 15px 0 25px;
    font-size: 0.95rem;
    opacity: 0.9;
    align-items: flex-start;
}

.footer-address-main i {
    color: var(--gold-primary);
    width: 20px;
    text-align: center;
    margin-top: 4px;
}



/* ========== FOOTER ========== */
.footer {
    background: var(--text-rich);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--gold-primary);
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 20px;
}



.footer h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: white;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ========== MODALS ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalUp 0.4s ease;
}

@keyframes modalUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-soft);
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--gold-primary);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--text-rich);
}

.modal-content p {
    margin-bottom: 15px;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-deep);
    transform: translateY(-5px);
}

/* ========== RESPONSIVE FIXES ========== */
@media (max-width: 768px) {
    .header-right .btn {
        display: none;
    }

    .hero-features {
        flex-wrap: wrap;
    }
}