/* ==========================================================================
   TJ GOLD & SILVER – LUXURY THEME CORE STYLES
   ========================================================================== */

/* 1. Global Custom Properties (Design Tokens - Overrideable by WordPress Customizer Custom CSS) */
:root {
    /* Color Palette Fallbacks */
    --primary-red: #750d19;          /* Deep Burgundy Red */
    --primary-red-hover: #5c0a13;
    --primary-red-light: rgba(117, 13, 25, 0.08);
    
    --bg-beige: #f5f2eb;              /* Silk Beige */
    --bg-beige-dark: #e8e3d5;
    --bg-silk-white: #fcfbf8;         /* Off-white silk */
    
    --accent-gold: #d4af37;           /* Metallic Gold */
    --accent-gold-light: rgba(212, 175, 55, 0.15);
    --accent-gold-gradient: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    
    --accent-silver: #c0c0c0;            /* Metallic Silver */
    --accent-silver-light: rgba(192, 192, 192, 0.15);
    --accent-silver-gradient: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    
    --text-dark: #1a1617;            /* Charcoal text */
    --text-muted: #555555;            /* Secondary muted text */
    --text-light: #fcfbf8;            /* Light contrast text */
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Structure & UI */
    --max-width: 1200px;
    --header-height: 90px;
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Glassmorphism Defaults */
    --glass-bg: rgba(252, 251, 248, 0.65);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 15px 35px rgba(26, 22, 23, 0.08);
}

/* 2. Base Document Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-beige);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

/* 3. Reusable UI Components */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-call-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-call-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-whatsapp-solid {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp-solid:hover {
    background-color: #20ba5a;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.btn-hero-primary {
    background-color: var(--primary-red);
    color: var(--text-light);
    box-shadow: 0 10px 25px rgba(117, 13, 25, 0.3);
}

.btn-hero-primary:hover {
    background-color: var(--primary-red-hover);
    box-shadow: 0 10px 30px rgba(117, 13, 25, 0.5);
    transform: translateY(-3px);
}

.btn-hero-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.btn-hero-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--accent-gold);
}

.btn-hero-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-red);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.btn-form-submit {
    width: 100%;
    background: var(--accent-gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

.btn-form-submit:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-contact-submit {
    width: 100%;
    background-color: var(--primary-red);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(117, 13, 25, 0.2);
}

.btn-contact-submit:hover {
    background-color: var(--primary-red-hover);
    box-shadow: 0 8px 25px rgba(117, 13, 25, 0.4);
    transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 40px rgba(26, 22, 23, 0.12);
}

/* Badges */
.badge-luxury {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    border: 1px solid rgba(117, 13, 25, 0.15);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.text-gold {
    color: var(--accent-gold);
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.text-silver {
    color: var(--accent-silver);
    background: var(--accent-silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* 4. Header & Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.header-transparent {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-scrolled {
    height: 75px;
    background: rgba(117, 13, 25, 0.96); /* Solid Brand Red with opacity */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom logo wrapper overrides */
.theme-logo-wrapper img {
    height: 50px;
    width: auto;
}

/* Fallback Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-tj {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.logo-text-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 3px;
    margin-top: -2px;
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2000;
}

.hamburger-bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    position: relative;
    transition: background-color 0.3s;
}

.hamburger-bar::before, .hamburger-bar::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    left: 0;
    transition: transform 0.3s;
}

.hamburger-bar::before { top: -8px; }
.hamburger-bar::after { bottom: -8px; }

.mobile-nav-toggle[aria-expanded="true"] .hamburger-bar {
    background-color: transparent;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger-bar::before {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger-bar::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav Menu */
.nav-list {
    display: flex;
    gap: 1.8rem;
}

.nav-link, .nav-list li a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after, .nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active, .nav-list li a:hover, .nav-list li.current-menu-item a {
    color: var(--accent-gold);
}

.nav-link:hover::after, .nav-link.active::after, .nav-list li a:hover::after, .nav-list li.current-menu-item a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* 5. Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, hsl(353, 80%, 10%) 0%, hsl(353, 76%, 23%) 100%);
    padding: calc(var(--header-height) + 4rem) 0 8rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gold-sparkle {
    color: var(--accent-gold);
    animation: sparkle-pulse 2s infinite alternate;
}

@keyframes sparkle-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 5px var(--accent-gold)); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.dot-sep {
    color: var(--accent-gold);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

/* Hero Form */
.hero-form-wrapper {
    width: 100%;
}

.hero-form-card {
    background: rgba(26, 22, 23, 0.65);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-light);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
    text-align: center;
}

.form-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.form-group label i {
    color: var(--accent-gold);
}

.form-group input, .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: white;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

/* Curve Divider styling */
.hero-curve-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-curve-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-curve-divider .shape-fill {
    fill: var(--bg-beige);
}

/* 6. Today's Gold & Silver Price */
.prices-section {
    padding: 6rem 0;
}

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    filter: blur(50px);
    opacity: 0.15;
    pointer-events: none;
}

.gold-glow { background-color: var(--accent-gold); }
.silver-glow { background-color: var(--accent-silver); }

.price-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1.5rem;
}

.price-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.gold-bg {
    background: var(--accent-gold-gradient);
    color: var(--text-dark);
}

.silver-bg {
    background: var(--accent-silver-gradient);
    color: var(--text-dark);
}

.metal-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.gold-badge {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.silver-badge {
    background-color: var(--accent-silver-light);
    color: var(--accent-silver);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.price-title-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-top: 0.2rem;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    padding-bottom: 0.6rem;
}

.rate-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.rate-value {
    font-size: 1.4rem;
    font-weight: 700;
}

.price-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.status-indicator {
    font-size: 0.8rem;
    font-weight: 600;
    color: #20ba5a;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    animation: dot-pulse 1.5s infinite alternate;
}

@keyframes dot-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px #25d366; }
}

.btn-price-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-transform: uppercase;
}

.gold-btn-cta {
    background-color: var(--primary-red);
    color: var(--text-light);
}

.gold-btn-cta:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
}

.silver-btn-cta {
    background-color: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
}

.silver-btn-cta:hover {
    background-color: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* 7. About Us Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-silk-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    height: 480px;
}

.about-image-overlay-gold {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent-gold);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
    z-index: 1;
}

.about-luxury-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #440409 0%, var(--primary-red) 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: hidden;
}

.about-luxury-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    animation: slow-rotate 25s linear infinite;
}

@keyframes slow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.luxury-inner-frame {
    width: 88%;
    height: 88%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: calc(var(--border-radius-lg) - 4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 2rem;
    text-align: center;
}

.brand-badge-large {
    background: rgba(252, 251, 248, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius-lg);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.brand-badge-large span.experience-lbl {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.frame-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.frame-content p {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.2rem;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.pillar-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.pillar-card i {
    font-size: 1.4rem;
    background-color: var(--primary-red-light);
    padding: 0.8rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.pillar-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.trust-statement {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--accent-gold);
    padding: 1.2rem;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    font-size: 0.9rem;
}

.trust-statement i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* 8. Services Section */
.services-section {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(0,0,0,0.04);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red-light);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-red);
    margin-bottom: 1.8rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--primary-red);
    color: var(--text-light);
    transform: scale(1.05) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.service-bullets li {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-bullets li i {
    font-size: 0.65rem;
}

/* 9. Why Choose Us Section */
.why-choose-us-section {
    padding: 6rem 0;
    background-color: var(--bg-silk-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--border-radius-lg);
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 35px rgba(26,22,23,0.06);
    transform: translateY(-3px);
}

.feature-check-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(32, 186, 90, 0.08);
    color: #20ba5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(32, 186, 90, 0.15);
}

.feature-card:hover .feature-check-icon {
    background-color: #20ba5a;
    color: white;
}

.feature-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* 10. How We Work (Timeline) */
.how-we-work-section {
    padding: 6rem 0;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-red-light) 0%, var(--accent-gold) 50%, var(--primary-red-light) 100%);
    transform: translateX(-50%);
    pointer-events: none;
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 4rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-number-box {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-red);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 10;
    top: 20px;
}

.timeline-item:nth-child(odd) .timeline-number-box {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-number-box {
    left: -25px;
}

.timeline-content-card {
    padding: 2rem;
}

.timeline-content-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.timeline-content-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* 11. Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--bg-silk-white);
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
}

.rating-stars {
    color: var(--accent-gold);
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 650px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(117,13,25,0.15);
}

.user-meta {
    text-align: left;
}

.user-meta h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-red);
    font-weight: 700;
}

.user-meta span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(117,13,25,0.15);
    background-color: white;
    color: var(--primary-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(117,13,25,0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.carousel-dot.active {
    background-color: var(--primary-red);
    transform: scale(1.2);
}

/* 12. FAQ Section (Accordion) */
.faq-section {
    padding: 6rem 0;
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background-color: white;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.faq-item:hover, .faq-item.active {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 25px rgba(26,22,23,0.04);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    transition: var(--transition-smooth);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    background-color: var(--primary-red);
    color: white;
    transform: rotate(45deg);
}

.faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
}

.faq-content-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.02);
}

.faq-content-inner p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* 13. Blog Section */
.blog-section {
    padding: 6rem 0;
    background-color: var(--bg-silk-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.blog-post-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.blog-img-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #53040a 0%, var(--primary-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.4);
    position: relative;
}

.blog-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-post-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-post-content h3 a {
    color: var(--primary-red);
}

.blog-post-content h3 a:hover {
    color: var(--accent-gold);
}

.blog-post-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    color: var(--primary-red);
}

.blog-action-wrapper {
    text-align: center;
}

.btn-view-blogs {
    background-color: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-view-blogs:hover {
    background-color: var(--primary-red);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* 14. Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
}

.contact-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-red-light);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-details span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.info-details a, .info-details address {
    font-style: normal;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.info-details a:hover {
    color: var(--accent-gold);
}

.map-container-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.contact-form-column {
    width: 100%;
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-row-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.contact-form label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.contact-form input, .contact-form textarea {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-dark);
}

.contact-form input:focus, .contact-form textarea:focus {
    background: white;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(117,13,25,0.06);
}

/* 15. Footer */
.main-footer {
    background-color: #110e0f;
    color: rgba(255, 255, 255, 0.7);
    padding: 6rem 0 0 0;
    font-size: 0.88rem;
    border-top: 3px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.brand-col .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.brand-col .footer-logo span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-light);
    display: block;
    letter-spacing: 3px;
    margin-top: -4px;
}

.brand-col .footer-desc {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-red);
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.links-col ul a {
    color: rgba(255, 255, 255, 0.6);
}

.links-col ul a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-col p {
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.footer-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-footer-call {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: flex-start;
    padding: 0.65rem 1.2rem;
    font-size: 0.8rem;
}

.btn-footer-call:hover {
    background-color: rgba(255,255,255,0.08);
    border-color: var(--accent-gold);
}

.btn-footer-whatsapp {
    background-color: #25d366;
    color: white;
    justify-content: flex-start;
    padding: 0.65rem 1.2rem;
    font-size: 0.8rem;
}

.btn-footer-whatsapp:hover {
    background-color: #20ba5a;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 0;
    font-size: 0.78rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-meta-links a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-meta-links a:hover {
    color: var(--accent-gold);
}

/* 16. Floating Elements */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.floating-call {
    background: var(--primary-red);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.floating-call:hover {
    background: var(--primary-red-hover);
    transform: scale(1.08);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.08);
}

/* Tooltip Labels */
.btn-label-text {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.floating-btn:hover .btn-label-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 17. Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.fade-in {
    transform: scale(0.98);
}

.scroll-reveal.slide-up {
    transform: translateY(40px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==========================================================================
   18. Responsive Grid Breakdowns
   ========================================================================== */

/* Tablet & Smaller Screen size */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        height: 400px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Mobile Screens only */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .header-actions {
        display: none; /* Keep actions grouped in floating corner buttons */
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--primary-red-hover);
        padding: calc(var(--header-height) + 2rem) 2rem;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-list li a, .nav-link {
        font-size: 1rem;
        color: var(--text-light);
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* Price Card */
    .price-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Timeline */
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        margin-bottom: 3rem;
    }
    
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 5rem;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(odd) .timeline-number-box, 
    .timeline-item:nth-child(even) .timeline-number-box {
        left: 5px;
    }
    
    /* Grid services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row-two {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        width: 100%;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
}
