/**
 * Main Stylesheet - Safi Gold Trading
 * Luxury Gold Trading Website
 */

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    /* Color Palette */
    --color-gold: #D4AF37;
    --color-gold-light: #F4DF89;
    --color-gold-dark: #B4941F;
    --color-brown-dark: #3E2723;
    --color-brown: #5D4037;
    --color-white: #FFFFFF;
    --color-off-white: #F5F5F5;
    --color-black: #000000;
    --color-charcoal: #212121;
    --color-gray-dark: #333333;
    --color-gray: #666666;
    --color-gray-light: #999999;
    --color-silver: #C0C0C0;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Border Radius */
    --radius-sm: 3px;
    --radius-md: 5px;
    --radius-lg: 10px;
    --radius-xl: 20px;
    --radius-full: 50%;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-brown-dark);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--color-gold); }
.text-brown { color: var(--color-brown); }
.text-white { color: var(--color-white); }
.text-dark { color: var(--color-brown-dark); }

.bg-white { background-color: var(--color-white); }
.bg-off-white { background-color: var(--color-off-white); }
.bg-dark { background-color: var(--color-brown-dark); }
.bg-gold { background-color: var(--color-gold); }
.bg-black { background-color: var(--color-black); }

.section-padding {
    padding: var(--spacing-xxl) 0;
}

.section-padding-sm {
    padding: var(--spacing-xl) 0;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.btn-secondary:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-gold-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--color-off-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.9rem;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.top-bar {
    background: var(--color-brown-dark);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    color: var(--color-gold);
    margin-left: 15px;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

.navbar {
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--color-brown-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-gold-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--color-brown-dark);
    transition: all var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.9), rgba(0, 0, 0, 0.8)),
                url('../images/hero/gold-hero-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-off-white);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-icon {
    color: var(--color-gold);
    font-size: 2rem;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    background: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-brown-dark);
}

.feature-text {
    color: var(--color-gray);
    line-height: 1.8;
}

/* ===================================
   GOLD TICKER
   =================================== */
.gold-ticker {
    background: var(--color-brown-dark);
    color: var(--color-white);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 50px;
    white-space: nowrap;
    font-size: 1.1rem;
}

.ticker-label {
    color: var(--color-gold);
    font-weight: 600;
}

.ticker-price {
    font-weight: 700;
}

.ticker-change {
    font-size: 0.9rem;
}

.ticker-change.positive {
    color: #4CAF50;
}

.ticker-change.negative {
    color: #F44336;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products {
    background: var(--color-off-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-size: 2.8rem;
    color: var(--color-brown-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--color-off-white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-details {
    padding: var(--spacing-md);
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-brown-dark);
}

.product-specs {
    display: flex;
    gap: 15px;
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--color-gray);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-price {
    font-size: 1.6rem;
    color: var(--color-gold-dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    text-align: center;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img:nth-child(1) {
    grid-row: 1 / 3;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content .about-tag {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.about-content .about-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-brown-dark);
}

.about-content p {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-features {
    margin-top: var(--spacing-lg);
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: var(--spacing-sm);
}

.about-feature-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature-text h5 {
    margin-bottom: 5px;
    color: var(--color-brown-dark);
}

.about-feature-text p {
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    background: linear-gradient(135deg, var(--color-brown-dark), var(--color-brown));
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/icons/pattern.png') repeat;
    opacity: 0.05;
}

.testimonials .section-tag {
    color: var(--color-gold-light);
}

.testimonials .section-title {
    color: var(--color-white);
}

.testimonials .section-subtitle {
    color: var(--color-off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-rating {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-off-white);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.testimonial-info h5 {
    color: var(--color-white);
    margin-bottom: 3px;
}

.testimonial-info p {
    color: var(--color-gold-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-charcoal);
    color: var(--color-gray-light);
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.footer-about p {
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-gold);
    margin-top: 5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--color-gray-light);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.newsletter-form {
    position: relative;
}

.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-gray);
    border-radius: var(--radius-sm);
    background: var(--color-brown-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    margin-bottom: var(--spacing-sm);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid var(--color-gray);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.copyright {
    color: var(--color-gray);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-brown-dark);
    color: var(--color-gold);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===================================
   PAGE HEADER (For Inner Pages)
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--color-brown-dark), var(--color-brown));
    padding: 150px 0 var(--spacing-xxl);
    text-align: center;
    color: var(--color-white);
    margin-top: 0;
}

.page-title {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--color-gold);
}

.breadcrumb span {
    color: var(--color-gray-light);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.faq-question {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question h4 {
    font-size: 1.2rem;
    color: var(--color-brown-dark);
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: var(--spacing-md);
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.faq-toggle:hover {
    transform: rotate(90deg);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, var(--color-brown-dark), var(--color-brown));
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    background: var(--color-off-white);
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    margin: 0;
    color: var(--color-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-icon-decoration {
    position: absolute;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.05);
    z-index: 0;
    pointer-events: none;
}

/* ===================================
   LOADING SPINNER
   =================================== */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--color-off-white);
    border-top: 5px solid var(--color-gold);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
