/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* Dark Glassy Theme Colors - Extracted from logo concept */
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --accent-gold: #d4af37;
    --accent-blue: #4a90e2;
    --accent-purple: #7b68ee;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b8bcc8;
    --text-muted: #8a8d9a;
    --shadow-glow: rgba(123, 104, 238, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

/* White Theme - Modern Clean Design */
[data-theme="white"] {
    /* White Theme Colors */
    --primary-dark: #ffffff;
    --secondary-dark: #f8f9fa;
    --accent-gold: #c9a961;
    --accent-blue: #8b6914; /* Dark gold/bronze instead of blue */
    --accent-purple: #a0822d; /* Dark goldish purple */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --text-primary: #1a1f3a;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --shadow-glow: rgba(139, 105, 20, 0.15); /* Dark gold shadow */
    --shadow-dark: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, #0f1422 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* White Theme Body Background */
[data-theme="white"] body {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f5f9 100%);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(123, 104, 238, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* White Theme Background Overlay */
[data-theme="white"] body::before {
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 105, 20, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(201, 169, 97, 0.02) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Glass Morphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--shadow-dark);
}

/* Client Banner (Scrolling) */
.client-banner {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 100;
    width: 100%;
}

[data-theme="white"] .client-banner {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.client-scroll {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    white-space: nowrap;
}

[data-theme="white"] .client-scroll {
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(201, 169, 97, 0.3);
}

.client-scroll span {
    display: inline-block;
    padding-right: 50px;
    white-space: nowrap;
}

@keyframes scroll {
    0% { 
        transform: translateX(100%);
    }
    100% { 
        transform: translateX(-50%);
    }
}

/* Header & Navigation - Glassy */
.header {
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

[data-theme="white"] .header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 1.2rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(123, 104, 238, 0.5));
    transition: transform 0.3s;
}

[data-theme="white"] .logo {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue));
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: var(--glass-bg);
}

[data-theme="white"] .nav-menu a {
    color: var(--text-secondary);
}

[data-theme="white"] .nav-menu a:hover {
    color: var(--accent-blue);
    background: rgba(139, 105, 20, 0.1);
}

.nav-menu a:hover::before {
    width: 80%;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin-left: 20px;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(123, 104, 238, 0.4);
    border-color: rgba(123, 104, 238, 0.5);
    background: rgba(123, 104, 238, 0.1);
}

.theme-icon {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: scale(1.2);
}

[data-theme="white"] .theme-toggle {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="white"] .theme-toggle:hover {
    background: rgba(139, 105, 20, 0.1);
    border-color: rgba(139, 105, 20, 0.2);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.2);
}

/* Hero Section - Dark Glassy */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 30% 50%, rgba(123, 104, 238, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(74, 144, 226, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

[data-theme="white"] .hero {
    background: 
        radial-gradient(circle at 30% 50%, rgba(139, 105, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.6);
    z-index: 1;
}

[data-theme="white"] .hero-overlay {
    background: rgba(255, 255, 255, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(26, 31, 58, 0.35);
    backdrop-filter: blur(25px) saturate(140%);
    -webkit-backdrop-filter: blur(25px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.hero-content:hover {
    background: rgba(26, 31, 58, 0.4);
    border-color: rgba(255, 255, 255, 0.18);
}

[data-theme="white"] .hero-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(140%);
    -webkit-backdrop-filter: blur(25px) saturate(140%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="white"] .hero-content:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(139, 105, 20, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.4);
}

[data-theme="white"] .hero-title {
    color: var(--accent-gold);
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="white"] .hero-subtitle {
    color: var(--text-primary);
    text-shadow: none;
}

.btn-hero {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(123, 104, 238, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(123, 104, 238, 0.7), 0 6px 16px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
    background: transparent;
    text-align: center;
    position: relative;
}

.welcome-title {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.cta-link:hover {
    color: var(--text-primary);
    background: rgba(74, 144, 226, 0.2);
    transform: translateX(5px);
}


/* About Section */
.about-section {
    padding: 100px 0;
    background: transparent;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.red-title {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image-wrapper {
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    object-fit: cover;
}

.about-image-placeholder {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 0 auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.about-image-placeholder:hover {
    border-color: var(--accent-purple);
    background: rgba(123, 104, 238, 0.1);
}

.placeholder-content {
    text-align: center;
}

.placeholder-content svg {
    color: var(--accent-gold);
    opacity: 0.4;
    margin-bottom: 12px;
}

.placeholder-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 8px 0 4px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.placeholder-content small {
    color: var(--text-muted);
    font-size: 0.85rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* About Section - Clean Layout */
.about-section {
    padding: 60px 0;
    background: transparent;
}

.about-section .section-title {
    margin-bottom: 30px;
}

.about-image-wrapper {
    text-align: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.about-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    object-fit: cover;
    display: block;
}

/* Why Section */
.why-section {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.why-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.why-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 400;
}

.why-section strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* How We Help Section - Two Column */
.how-we-help-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.how-content-left h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Accordion Services */
.accordion-services {
    margin-bottom: 30px;
}

.accordion-item {
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.accordion-item:hover {
    border-color: rgba(123, 104, 238, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.accordion-item.active {
    border-color: rgba(123, 104, 238, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.accordion-header {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.2px;
}

.accordion-header:hover {
    color: var(--accent-blue);
}

.accordion-header span:first-child {
    flex: 1;
}

.accordion-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    line-height: 1;
    min-width: 20px;
    text-align: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--accent-blue);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 22px;
    background: rgba(0, 0, 0, 0.1);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 18px 22px;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 400;
}

.company-info {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-top: 25px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 400;
}

.company-info strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* Right Side Image */
.how-image-right {
    position: sticky;
    top: 100px;
}

.vertical-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    object-fit: cover;
    display: block;
}

.vertical-image-placeholder {
    width: 100%;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.vertical-image-placeholder svg {
    color: var(--accent-gold);
    opacity: 0.4;
    margin-bottom: 12px;
}

.vertical-image-placeholder p {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 5px 0;
}

.vertical-image-placeholder small {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Time Matters Section */
.time-matters-section {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 40px;
}

.time-matters-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.time-matters-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.time-matters-section p:last-of-type {
    margin-bottom: 0;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.85;
}

.time-matters-section strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.btn-cta-modern {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(123, 104, 238, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(123, 104, 238, 0.7);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

/* Two Column Layout (for other sections) */
.two-column-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.recover-layout-swapped {
    grid-template-columns: 1fr 2fr;
}

/* Recover Section */
.recover-section {
    padding: 60px 0;
    background: transparent;
}

.recover-intro {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.recover-column {
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.recover-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(123, 104, 238, 0.3);
}

.recover-column h3 {
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.recover-column p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Recover Image Column */
.recover-image-column {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.recover-section-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    object-fit: cover;
    display: block;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.recover-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.recover-image-placeholder svg {
    color: var(--accent-gold);
    opacity: 0.4;
    margin-bottom: 12px;
}

.recover-image-placeholder p {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    margin: 5px 0;
}

.recover-image-placeholder small {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background: transparent;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.process-step {
    text-align: center;
    padding: 35px 28px;
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(123, 104, 238, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(123, 104, 238, 0.4);
}

.process-step:hover::before {
    opacity: 1;
}

.process-step > * {
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(123, 104, 238, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s;
}

.process-step:hover .process-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(123, 104, 238, 0.8), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.process-step h3 {
    color: var(--accent-blue);
    font-size: 1.25rem;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s;
}

.process-step:hover h3 {
    color: var(--accent-purple);
}

.process-step p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Statistics Section */
.statistics-section {
    padding: 60px 0;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    border-top: 3px solid var(--accent-gold);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue), var(--accent-gold));
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(123, 104, 238, 0.4);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.stat-card h3 {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(123, 104, 238, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(123, 104, 238, 0.4);
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testimonial-author {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.why-card {
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.2) 0%, rgba(74, 144, 226, 0.2) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(123, 104, 238, 0.5);
    background: linear-gradient(135deg, rgba(123, 104, 238, 0.3) 0%, rgba(74, 144, 226, 0.3) 100%);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: transparent;
}

.contact-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: stretch;
}

.contact-section-info-combined {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 0;
}

.text-consent-inline {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.text-consent-inline p {
    margin: 0;
}

.contact-details-inline {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
}

.contact-details-inline p {
    margin: 18px 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-details-inline p:first-child {
    margin-top: 0;
}

.contact-details-inline p:last-child {
    margin-bottom: 0;
}

.contact-details-inline a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s;
}

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

.contact-details-inline strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hours-section-inline {
    padding-bottom: 0;
    margin-bottom: 0;
}

.hours-section-inline h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

.hours-section-inline p {
    margin: 12px 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.hours-section-inline p:last-child {
    margin-bottom: 0;
}

.contact-section-form {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-section-form h3 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.8rem;
}

.contact-form-inline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
    min-height: 70vh;
}

.contact-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
    align-items: stretch;
}

.contact-form-section,
.contact-info-combined {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-info-combined {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.text-consent-inline {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.text-consent-inline p {
    margin: 0;
}

.contact-details-inline {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
}

.contact-details-inline p {
    margin: 18px 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-details-inline p:first-child {
    margin-top: 0;
}

.contact-details-inline p:last-child {
    margin-bottom: 0;
}

.contact-details-inline a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s;
}

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

.contact-details-inline strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hours-section-inline {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
}

.hours-section-inline h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

.hours-section-inline p {
    margin: 12px 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.hours-section-inline p:last-child {
    margin-bottom: 0;
}

.contact-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
}

.text-consent {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    border: 1px solid var(--glass-border);
}

.contact-details {
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.contact-details p {
    margin: 18px 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.contact-details p:first-child {
    margin-top: 0;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s;
}

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

.contact-details strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hours-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.hours-section h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.2rem;
}

.hours-section p {
    margin: 10px 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.hours-section-standalone {
    padding: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hours-section-standalone h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

.hours-section-standalone p {
    margin: 12px 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.btn-claim {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(123, 104, 238, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(123, 104, 238, 0.6);
}

.contact-ad {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(123, 104, 238, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.ad-image-wrapper {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.ad-main-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ad-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px dashed var(--glass-border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-bottom: 25px;
    transition: all 0.3s;
}

.ad-image-placeholder:hover {
    border-color: var(--accent-purple);
    background: rgba(123, 104, 238, 0.1);
}

.ad-image-placeholder svg {
    color: var(--accent-gold);
    opacity: 0.5;
    margin-bottom: 10px;
}

.ad-image-placeholder p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
}

.ad-content h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.4;
}

.ad-content p {
    margin: 18px 0;
    color: var(--text-secondary);
}

.website-url {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-blue);
}

.ad-logo {
    margin-top: 25px;
}

.ad-logo img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(123, 104, 238, 0.5));
}

.contact-form-section {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-form-section h2 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 2rem;
}

/* Footer - Glassy */
.footer {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 100px;
}

.footer-privacy {
    margin-bottom: 40px;
}

.footer-privacy a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 8px;
}

.footer-privacy a:hover {
    color: var(--accent-gold);
    background: var(--glass-bg);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(123, 104, 238, 0.5);
    border-color: rgba(123, 104, 238, 0.5);
}

.footer-info {
    margin-bottom: 40px;
    line-height: 1.8;
}

.footer-info p {
    margin: 12px 0;
    color: var(--text-secondary);
}

.footer-info a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-copyright {
    margin: 0;
}

.footer-designer {
    margin: 0;
}

.footer-designer a {
    color: #4caf50 !important;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.footer-designer a:hover {
    color: #66bb6a !important;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    color: var(--text-primary);
    box-shadow: 0 8px 24px rgba(123, 104, 238, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(123, 104, 238, 0.6);
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(123, 104, 238, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Page Content (Privacy Policy, Terms) */
.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.page-wrapper h1 {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    font-size: 2.8rem;
    font-weight: 700;
}

.page-body {
    line-height: 1.8;
    color: var(--text-secondary);
}

.page-body h2 {
    color: var(--accent-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-body p {
    margin-bottom: 20px;
}

.faqs-page {
    padding: 80px 0;
    min-height: 60vh;
}

.page-title {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    font-size: 2.8rem;
    text-align: center;
    font-weight: 700;
}

.faqs-content {
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: var(--text-secondary);
}

/* FAQs Accordion */
.faqs-accordion {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    border-color: rgba(123, 104, 238, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    border-color: rgba(123, 104, 238, 0.6);
    background: rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
    line-height: 1;
    min-width: 25px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 25px;
    background: rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    padding-top: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* White Theme - Additional Component Styles */
[data-theme="white"] .welcome-content,
[data-theme="white"] .recover-intro,
[data-theme="white"] .recover-column,
[data-theme="white"] .process-step,
[data-theme="white"] .stat-card,
[data-theme="white"] .testimonial-card,
[data-theme="white"] .why-card,
[data-theme="white"] .contact-section-form,
[data-theme="white"] .contact-section-info-combined,
[data-theme="white"] .contact-info-combined,
[data-theme="white"] .contact-form-section,
[data-theme="white"] .page-wrapper,
[data-theme="white"] .faqs-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="white"] .why-section p,
[data-theme="white"] .company-info,
[data-theme="white"] .accordion-content p,
[data-theme="white"] .testimonial-text,
[data-theme="white"] .faq-answer p {
    color: var(--text-primary);
}

[data-theme="white"] .why-section h2,
[data-theme="white"] .how-content-left h2,
[data-theme="white"] .recover-column h3,
[data-theme="white"] .process-step h3,
[data-theme="white"] .stat-card h3,
[data-theme="white"] .why-card h3,
[data-theme="white"] .contact-details-inline strong,
[data-theme="white"] .hours-section-inline h3 {
    color: var(--text-primary);
}

[data-theme="white"] .accordion-item,
[data-theme="white"] .faq-item {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="white"] .accordion-item:hover,
[data-theme="white"] .faq-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(139, 105, 20, 0.2);
}

[data-theme="white"] .accordion-item.active,
[data-theme="white"] .faq-item.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 105, 20, 0.3);
}

[data-theme="white"] .accordion-header,
[data-theme="white"] .faq-question {
    color: var(--text-primary);
}

[data-theme="white"] .accordion-header:hover,
[data-theme="white"] .faq-question:hover {
    color: var(--accent-blue);
}

[data-theme="white"] .accordion-content {
    background: rgba(248, 249, 250, 0.5);
}

[data-theme="white"] .faq-answer {
    background: rgba(248, 249, 250, 0.5);
}

[data-theme="white"] .about-image-placeholder,
[data-theme="white"] .vertical-image-placeholder,
[data-theme="white"] .recover-image-placeholder,
[data-theme="white"] .ad-image-placeholder {
    background: rgba(248, 249, 250, 0.8);
    border: 2px dashed rgba(0, 0, 0, 0.15);
}

[data-theme="white"] .about-image-placeholder:hover,
[data-theme="white"] .vertical-image-placeholder:hover,
[data-theme="white"] .recover-image-placeholder:hover {
    border-color: var(--accent-blue);
    background: rgba(139, 105, 20, 0.05);
}

[data-theme="white"] .form-group input,
[data-theme="white"] .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--text-primary);
}

[data-theme="white"] .form-group input::placeholder,
[data-theme="white"] .form-group textarea::placeholder {
    color: var(--text-muted);
}

[data-theme="white"] .form-group input:focus,
[data-theme="white"] .form-group textarea:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(139, 105, 20, 0.15);
}

[data-theme="white"] .footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

[data-theme="white"] .footer-info p {
    color: var(--text-secondary);
}

[data-theme="white"] .social-icon {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

[data-theme="white"] .social-icon:hover {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 105, 20, 0.3);
}

[data-theme="white"] .footer-privacy a {
    color: var(--text-primary);
}

[data-theme="white"] .footer-privacy a:hover {
    color: var(--accent-blue);
    background: rgba(139, 105, 20, 0.1);
}

[data-theme="white"] .btn-hero,
[data-theme="white"] .btn-primary,
[data-theme="white"] .btn-cta-modern {
    box-shadow: 0 8px 24px rgba(139, 105, 20, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

[data-theme="white"] .btn-hero:hover,
[data-theme="white"] .btn-primary:hover,
[data-theme="white"] .btn-cta-modern:hover {
    box-shadow: 0 12px 32px rgba(139, 105, 20, 0.4);
}

[data-theme="white"] .process-step {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="white"] .process-step:hover {
    box-shadow: 0 20px 60px rgba(139, 105, 20, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(139, 105, 20, 0.2);
}

[data-theme="white"] .process-step::before {
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.05) 0%, rgba(201, 169, 97, 0.05) 100%);
}

[data-theme="white"] .process-step p {
    color: var(--text-primary);
}

[data-theme="white"] .process-number {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    box-shadow: 0 10px 30px rgba(139, 105, 20, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

[data-theme="white"] .process-step:hover .process-number {
    box-shadow: 0 15px 40px rgba(139, 105, 20, 0.6), inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

[data-theme="white"] .process-step h3 {
    color: var(--accent-blue);
}

[data-theme="white"] .process-step:hover h3 {
    color: var(--accent-blue);
}

[data-theme="white"] .btn-hero,
[data-theme="white"] .btn-primary,
[data-theme="white"] .btn-cta-modern {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
}

[data-theme="white"] .btn-hero:hover,
[data-theme="white"] .btn-primary:hover,
[data-theme="white"] .btn-cta-modern:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

[data-theme="white"] .recover-column h3 {
    color: var(--accent-blue);
}

[data-theme="white"] .stat-value {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="white"] .contact-details-inline a,
[data-theme="white"] .contact-details a {
    color: var(--accent-blue);
}

[data-theme="white"] .contact-details-inline a:hover,
[data-theme="white"] .contact-details a:hover {
    color: var(--accent-gold);
}

[data-theme="white"] .footer-info a {
    color: var(--accent-blue);
}

[data-theme="white"] .footer-info a:hover {
    color: var(--accent-gold);
}

[data-theme="white"] .page-body h2 {
    color: var(--accent-blue);
}

[data-theme="white"] .contact-title,
[data-theme="white"] .contact-form-section h2,
[data-theme="white"] .contact-form-section h3 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="white"] .testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

[data-theme="white"] .testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(139, 105, 20, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(139, 105, 20, 0.2);
}

[data-theme="white"] .why-card {
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.08) 0%, rgba(201, 169, 97, 0.08) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="white"] .why-card:hover {
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.12) 0%, rgba(201, 169, 97, 0.12) 100%);
    box-shadow: 0 16px 48px rgba(139, 105, 20, 0.2);
}

[data-theme="white"] .why-card p {
    color: var(--text-primary);
}

[data-theme="white"] .stat-card {
    border-top: 3px solid var(--accent-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-theme="white"] .stat-card:hover {
    box-shadow: 0 16px 48px rgba(139, 105, 20, 0.15);
}

[data-theme="white"] .stat-card::before {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue), var(--accent-gold));
}

[data-theme="white"] .stat-card h3 {
    color: var(--text-primary);
}

[data-theme="white"] .stat-desc {
    color: var(--text-secondary);
}

[data-theme="white"] .contact-details-inline a:hover {
    color: var(--accent-blue);
}

[data-theme="white"] .text-consent-inline {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}

[data-theme="white"] .contact-details-inline {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="white"] .contact-details-inline p {
    color: var(--text-secondary);
}

[data-theme="white"] .hours-section-inline {
    border-bottom: none;
}

[data-theme="white"] .hours-section-inline p {
    color: var(--text-secondary);
}

[data-theme="white"] .page-body {
    color: var(--text-primary);
}

[data-theme="white"] .page-body h2 {
    color: var(--accent-blue);
}

[data-theme="white"] .page-body p {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .how-we-help-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .how-image-right {
        position: relative;
        top: 0;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 40px 25px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-wrapper {
        padding: 40px 25px;
    }
}
