/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Aggressive Dark Gold Color Scheme */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a0a;
    --gold-bright: #ffd700;
    --gold-medium: #ffb300;
    --gold-dark: #b8860b;
    --gold-orange: #ff8c00;
    --gold-yellow: #ffeb3b;
    --gold-light: #ffed4e;
    --accent-amber: #ffc107;
    --text-light: #ffffff;
    --text-gray: #d4af37;
    --text-dark-gray: #8b6914;
    --border-gold: #ffd700;
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.6);
    --shadow-gold-bright: 0 0 30px rgba(255, 215, 0, 0.8);
    --shadow-gold-orange: 0 0 20px rgba(255, 140, 0, 0.6);
    --shadow-aggressive: 0 8px 32px rgba(0, 0, 0, 0.8);
    --gradient-gold: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-medium) 50%, var(--gold-orange) 100%);
    --gradient-animated: linear-gradient(-45deg, var(--gold-bright), var(--gold-medium), var(--gold-orange), var(--gold-yellow));
}

body {
    font-family: 'Arial Black', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 3px solid var(--gold-bright);
    box-shadow: var(--shadow-aggressive);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-light);
}

.cookie-content a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-shadow: 0 0 10px var(--gold-bright);
}

.cookie-btn {
    background: var(--gold-bright);
    color: var(--bg-dark);
    border: 2px solid var(--gold-bright);
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.cookie-btn:hover {
    background: transparent;
    color: var(--gold-bright);
    box-shadow: 0 0 30px var(--gold-bright);
    transform: scale(1.05);
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold-bright);
    box-shadow: var(--shadow-aggressive);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    color: var(--gold-bright);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--gold-bright);
}

.logo:hover {
    color: var(--gold-orange);
    text-shadow: 0 0 30px var(--gold-orange);
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: clamp(20px, 3vw, 40px);
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 16px);
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-bright);
    box-shadow: 0 0 10px var(--gold-bright);
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 10px var(--gold-bright);
}

.nav-list a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--gold-bright);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--gold-bright);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Aggressive Design */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--bg-darker);
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-animated);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    opacity: 0.15;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: center;
}

.hero-main {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content-wrapper {
    color: var(--text-light);
}

.hero-title {
    font-size: clamp(42px, 7vw, 90px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease-out 0.2s both;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6));
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 26px);
    line-height: 1.5;
    margin-bottom: 40px;
    color: var(--text-gray);
    animation: slideUp 0.8s ease-out 0.4s both;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(14px, 1.5vw, 18px);
    transition: all 0.3s ease;
    display: inline-block;
    border: 3px solid;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-bright);
    color: var(--bg-dark);
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px var(--gold-bright);
    background: transparent;
    color: var(--gold-bright);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-orange);
    border-color: var(--gold-orange);
    box-shadow: var(--shadow-gold-orange);
}

.btn-secondary:hover {
    background: var(--gold-orange);
    color: var(--bg-dark);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px var(--gold-orange);
}

.hero-visual {
    position: relative;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--gold-bright);
    box-shadow: var(--shadow-gold), var(--shadow-aggressive);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    animation: rotate 3s linear infinite;
    z-index: 1;
}

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

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 0 50px var(--gold-bright), var(--shadow-aggressive);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0;
}

.hero-decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.shape {
    position: absolute;
    border: 2px solid;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    border-color: var(--gold-bright);
    top: 10%;
    right: -20px;
    animation-delay: 0s;
    box-shadow: 0 0 20px var(--gold-bright);
}

.shape-2 {
    width: 60px;
    height: 60px;
    border-color: var(--gold-orange);
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
    box-shadow: 0 0 20px var(--gold-orange);
}

.shape-3 {
    width: 80px;
    height: 80px;
    border-color: var(--gold-medium);
    top: 60%;
    right: 10%;
    animation-delay: 4s;
    box-shadow: 0 0 20px var(--gold-medium);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--gold-bright);
    animation: bounce 2s infinite;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero-scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--gold-bright);
}

.scroll-arrow {
    width: 3px;
    height: 30px;
    background: var(--gold-bright);
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 10px var(--gold-bright);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 3px solid var(--gold-bright);
    border-bottom: 3px solid var(--gold-bright);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--gold-bright);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Services Section with Tabs */
.services-section {
    padding: 120px 0;
    background: var(--bg-darker);
    border-top: 2px solid var(--gold-medium);
    border-bottom: 2px solid var(--gold-medium);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 6vw, 70px);
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 0 30px var(--gold-bright);
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 600;
}

.services-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 3px solid var(--gold-medium);
    padding-bottom: 20px;
}

.tab-btn {
    padding: 18px 35px;
    background: transparent;
    border: 2px solid transparent;
    color: var(--text-gray);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn:hover {
    color: var(--gold-orange);
    border-color: var(--gold-orange);
    box-shadow: var(--shadow-gold-orange);
}

.tab-btn.active {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    background: rgba(255, 215, 0, 0.15);
    box-shadow: var(--shadow-gold);
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-image-wrapper {
    overflow: hidden;
    border: 3px solid var(--gold-bright);
    box-shadow: var(--shadow-gold);
    position: relative;
}

.tab-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.15));
    z-index: 1;
    pointer-events: none;
}

.tab-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 0;
}

.tab-image-wrapper:hover .tab-image {
    transform: scale(1.1);
}

.tab-text h3 {
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--gold-bright);
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--gold-bright);
}

.tab-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: clamp(15px, 1.8vw, 18px);
}

.service-features {
    list-style: none;
    margin-top: 30px;
}

.service-features li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
    border-left: 2px solid var(--gold-bright);
    margin-bottom: 10px;
}

.service-features li::before {
    content: '▶';
    position: absolute;
    left: 10px;
    color: var(--gold-bright);
    font-weight: bold;
    text-shadow: 0 0 10px var(--gold-bright);
}

/* About Section with Statistics */
.about-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

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

.about-text-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: var(--bg-card);
    padding: 50px 30px;
    text-align: center;
    color: var(--text-light);
    box-shadow: var(--shadow-aggressive);
    transition: all 0.3s ease;
    border: 2px solid var(--gold-medium);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gold-bright), transparent);
    opacity: 0.15;
    animation: rotate 10s linear infinite;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-gold), var(--shadow-aggressive);
}

.stat-number {
    font-size: clamp(56px, 7vw, 90px);
    font-weight: 900;
    line-height: 1;
    display: inline-block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.stat-suffix {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    display: inline-block;
    color: var(--gold-bright);
    text-shadow: 0 0 20px var(--gold-bright);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: clamp(16px, 2vw, 20px);
    margin-top: 15px;
    color: var(--text-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: var(--bg-darker);
    border-top: 2px solid var(--gold-orange);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-aggressive);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-gold), var(--shadow-aggressive);
}

.feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--bg-darker);
    border: 3px solid var(--gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: var(--shadow-gold);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: clamp(22px, 2.8vw, 28px);
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: clamp(14px, 1.6vw, 16px);
    position: relative;
    z-index: 1;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: var(--bg-dark);
    border-top: 2px solid var(--gold-medium);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.process-card {
    background: var(--bg-card);
    padding: 40px;
    border-left: 5px solid var(--gold-bright);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-aggressive);
    position: relative;
}

.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15));
    transition: width 0.3s ease;
}

.process-card:hover::after {
    width: 100%;
}

.process-card:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-gold), var(--shadow-aggressive);
    border-left-color: var(--gold-orange);
}

.process-number {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: var(--gold-bright);
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--gold-bright);
    position: relative;
    z-index: 1;
}

.process-card h3 {
    font-size: clamp(22px, 2.8vw, 28px);
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: clamp(14px, 1.6vw, 16px);
    position: relative;
    z-index: 1;
}

/* Testimonials Carousel */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-darker);
    border-top: 2px solid var(--gold-orange);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-aggressive);
    border: 2px solid var(--gold-medium);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 100px;
    color: var(--gold-bright);
    opacity: 0.2;
    font-weight: 900;
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    font-weight: 600;
}

.testimonial-author {
    border-top: 2px solid var(--gold-medium);
    padding-top: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    display: block;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--gold-bright);
    margin-bottom: 5px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--gold-bright);
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 60px;
    height: 60px;
    border: 3px solid var(--gold-bright);
    background: var(--bg-card);
    color: var(--gold-bright);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 900;
    box-shadow: var(--shadow-gold);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gold-bright);
    color: var(--bg-dark);
    transform: scale(1.15);
    box-shadow: 0 0 40px var(--gold-bright);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-dark-gray);
    border: 2px solid var(--gold-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    width: 35px;
    border-radius: 6px;
    box-shadow: var(--shadow-gold);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg-dark);
    border-top: 2px solid var(--gold-bright);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: clamp(22px, 2.8vw, 28px);
    color: var(--gold-bright);
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--gold-bright);
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 600;
}

.contact-item a {
    color: var(--gold-bright);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--gold-bright);
}

.contact-item a:hover {
    color: var(--gold-orange);
    text-shadow: 0 0 20px var(--gold-orange);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--gold-medium);
    background: var(--bg-card);
    color: var(--text-light);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: var(--shadow-gold);
    background: var(--bg-darker);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 80px 0 30px;
    border-top: 3px solid var(--gold-bright);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    margin-bottom: 25px;
    color: var(--gold-bright);
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--gold-bright);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 10px var(--gold-bright);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 2px solid var(--gold-medium);
    padding-top: 30px;
    text-align: center;
    color: var(--text-dark-gray);
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 600;
}

/* Policy Pages Styles */
.policy-page {
    padding: 120px 0 80px;
    background: var(--bg-darker);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 60px;
    box-shadow: var(--shadow-aggressive);
    border: 2px solid var(--gold-medium);
}

.policy-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--gold-bright);
    margin-bottom: 30px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 30px var(--gold-bright);
}

.policy-content h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--gold-orange);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.policy-content h3 {
    font-size: clamp(22px, 2.8vw, 28px);
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 900;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-gray);
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
}

.policy-content a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-shadow: 0 0 10px var(--gold-bright);
}

.policy-content a:hover {
    color: var(--gold-orange);
    text-shadow: 0 0 20px var(--gold-orange);
}

/* Thanks Page */
.thanks-page {
    padding: 120px 0;
    background: var(--bg-darker);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background: var(--bg-card);
    padding: 60px;
    box-shadow: var(--shadow-aggressive);
    border: 3px solid var(--gold-bright);
}

.thanks-content h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--gold-bright);
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 30px var(--gold-bright);
}

.thanks-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .tab-content-inner {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--bg-card);
        border-bottom: 2px solid var(--gold-bright);
        box-shadow: var(--shadow-aggressive);
        transition: left 0.3s ease;
        z-index: 999;
        padding: 30px 20px;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--gold-medium);
        padding: 15px 0;
    }

    .nav-list a::after {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .thanks-content {
        padding: 40px 20px;
    }
}

/* Additional responsive breakpoints */
@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
}
