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

:root {
    --primary-color: #0F0F0F;
    --secondary-color: #232D3F;
    --accent-color: #005B41;
    --highlight-color: #008170;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

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

.btn-login {
    background-color: var(--accent-color);
    color: var(--text-light);
    margin-right: 10px;
}

.btn-register {
    background-color: var(--highlight-color);
    color: var(--text-light);
}

/* Header and Navigation */
.header {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1rem;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 30%, var(--accent-color) 70%, var(--highlight-color) 100%);
    color: var(--text-light);
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.hero-section::after {
    content: '777';
    position: absolute;
    top: -100px;
    right: -100px;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    font-family: 'Arial Black', sans-serif;
    transform: rotate(15deg);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, var(--accent-color), #ffffff, var(--highlight-color));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: gradientShift 8s ease-in-out infinite;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-buttons .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.6s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    border: 2px solid var(--accent-color);
    color: var(--text-light);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
    border-color: var(--highlight-color);
    box-shadow: 0 15px 40px rgba(0, 91, 65, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Floating Entertainment Elements */
.hero-section::before {
    content: '🎰🎲♠️♥️♦️♣️';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 15s ease-in-out infinite;
}

.hero-section::before {
    content: '🎰🎲♠️♥️♦️♣️';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 2.5rem;
    opacity: 0.08;
    animation: float 18s ease-in-out infinite reverse;
}

/* Hero Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes glow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-5deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Image Styles */
.hero-image {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out 0.9s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 91, 65, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 91, 65, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Back to Top Button Animation */
.back-to-top {
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.9) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

/* Features Section */
.features-section {
    background-color: var(--text-light);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 91, 65, 0.3);
}

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Login Section */
.login-section {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
}

.login-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    min-height: 600px;
}

.login-content {
    text-align: left;
    flex: 1;
    max-width: 45%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.login-image {
    text-align: center;
    flex: 1;
    max-width: 45%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.login-image img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.login-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--text-light);
    color: var(--accent-color);
    border-radius: 50%;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Register Section */
.register-section {
    background-color: var(--text-light);
}

.register-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

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

.register-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.benefit h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.register-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 100%;
}

.register-image img {
    max-width: 300px;
    max-height: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: contain;
    transition: var(--transition);
}

.register-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
}

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

/* Games Slider Section */
.games-slider-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(255,255,255,0.05)">777</text></svg>') repeat;
    pointer-events: none;
}

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.slider-header .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.slider-header .emoji {
    font-size: 2.5rem;
}

.language-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    padding: 0.5rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.mobile-games-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Mobile Slider Container */
.mobile-slider-container {
    position: relative;
    overflow: visible;
    margin-bottom: 2rem;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-slide {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center bottom;
}

.mobile-slide[data-slide="0"] {
    transform: translateX(-400px) rotateY(-15deg) scale(0.7);
    z-index: 1;
    opacity: 0.4;
}

.mobile-slide[data-slide="1"] {
    transform: translateX(-200px) rotateY(-8deg) scale(0.8);
    z-index: 2;
    opacity: 0.6;
}

.mobile-slide[data-slide="2"] {
    transform: translateX(0) rotateY(0deg) scale(1);
    z-index: 5;
    opacity: 1;
}

.mobile-slide[data-slide="3"] {
    transform: translateX(200px) rotateY(8deg) scale(0.8);
    z-index: 2;
    opacity: 0.6;
}

.mobile-slide[data-slide="4"] {
    transform: translateX(400px) rotateY(15deg) scale(0.7);
    z-index: 1;
    opacity: 0.4;
}

.mobile-slide.active {
    z-index: 5;
    opacity: 1;
}

.mobile-screen {
    position: relative;
    width: 280px;
    height: 500px;
    
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    transform: perspective(1000px) rotateY(0deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    box-shadow: 
        0 0 0 2px #333,
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 12px;
    overflow: hidden;
}

.game-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prize-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.prize-amount {
    font-size: 1.2rem;
}

/* Game Badge */
.game-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.game-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
}

/* Game Thumbnails */
.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
}

.thumbnail-item.active {
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.thumbnail-item:hover .thumbnail-icon {
    transform: scale(1.1);
}

.thumbnail-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
}

/* Slider Slogan */
.slider-slogan {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.slider-slogan p {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Games Section (Legacy) */
.games-section {
    background-color: var(--text-light);
}

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

.game-card {
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 1rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.game-card p {
    padding: 0 1rem 1rem;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.benefit-item h3 {
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--text-light);
}

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

.testimonial-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--accent-color);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(255,255,255,0.05)">777</text></svg>') repeat;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 91, 65, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 129, 112, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-buttons .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;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--highlight-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--highlight-color);
}

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

.social-links a {
    display: inline-block;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--highlight-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    color: var(--text-light);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '777';
    position: absolute;
    top: -50px;
    right: -50px;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    font-family: 'Arial Black', sans-serif;
    transform: rotate(15deg);
    z-index: 0;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color), var(--accent-color));
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Content Section Styles */
.content-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--text-light) 0%, #f8f9fa 100%);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(0, 91, 65, 0.05) 0%, transparent 100%);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.content-wrapper h2 {
    color: var(--primary-color);
    margin: 3rem 0 1.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    border-radius: 2px;
}

.content-wrapper h2:first-of-type {
    margin-top: 0;
}

.content-wrapper h3 {
    color: var(--accent-color);
    margin: 2.5rem 0 1.2rem 0;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.5rem;
}

.content-wrapper h3::before {
    content: '🔒';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.content-wrapper h4 {
    color: var(--accent-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: justify;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.content-wrapper li {
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.content-wrapper li::before {
    content: '✓';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: var(--text-light);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.content-wrapper li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* FAQ Styles */
.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-categories {
    margin-bottom: 3rem;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-contact {
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 91, 65, 0.3), 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.faq-contact::before {
    content: '777';
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.08);
    font-family: 'Arial Black', sans-serif;
    transform: rotate(15deg);
    z-index: 0;
}

.faq-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.7), #ffffff);
    border-radius: 25px 25px 0 0;
}

.faq-contact h2 {
    color: var(--text-light);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.faq-contact p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: inline-block;
    text-align: left;
    position: relative;
    z-index: 1;
}

.faq-contact li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-contact li:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-contact li strong {
    color: var(--text-light);
    font-weight: 700;
    margin-right: 0.5rem;
}

.faq-contact .btn {
    position: relative;
    z-index: 1;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    background: var(--text-light);
    color: var(--accent-color);
    border: 2px solid var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.faq-contact .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 91, 65, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-contact .btn:hover::before {
    left: 100%;
}

.faq-contact .btn:hover {
    background: var(--accent-color);
    color: var(--text-light);
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Page Styles */
.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.contact-method h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.category h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.faq-section {
    text-align: center;
    margin: 3rem 0;
}

.response-times {
    margin: 3rem 0;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.response-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
}

.response-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    margin: 3rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
}

.info-item h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Contact Form Styles */
.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 91, 65, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    border: 2px solid rgba(0, 91, 65, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '777';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 91, 65, 0.03);
    font-family: 'Arial Black', sans-serif;
    transform: rotate(15deg);
    z-index: 0;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color), var(--accent-color));
    border-radius: 25px 25px 0 0;
}

.contact-form h2 {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 91, 65, 0.1);
    position: relative;
    z-index: 1;
}

.contact-form > p {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-form-element {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.checkbox-group {
    grid-column: 1 / -1;
    margin-bottom: 2.5rem;
}

.form-group label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    border-radius: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(0, 91, 65, 0.15);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0, 91, 65, 0.3);
    box-shadow: 0 6px 20px rgba(0, 91, 65, 0.1);
    transform: translateY(-2px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 91, 65, 0.15), 0 8px 25px rgba(0, 91, 65, 0.1);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark);
    opacity: 0.6;
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23005B41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

/* Enhanced Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 1rem;
    background: rgba(0, 91, 65, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 91, 65, 0.1);
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(0, 91, 65, 0.06);
    border-color: rgba(0, 91, 65, 0.2);
    transform: translateY(-1px);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-color);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 91, 65, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 91, 65, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.checkbox-label a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--highlight-color);
    text-decoration: underline;
    text-shadow: 0 1px 2px rgba(0, 91, 65, 0.1);
}

/* Enhanced Form Actions */
.form-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.form-actions .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.form-actions .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.6s ease;
}

.form-actions .btn:hover::before {
    left: 100%;
}

.form-actions .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    border: none;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(0, 91, 65, 0.3);
}

.form-actions .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(0, 91, 65, 0.4);
}

.form-actions .btn-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    border: none;
    color: var(--text-light);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.form-actions .btn-secondary:hover {
    box-shadow: 0 15px 40px rgba(108, 117, 125, 0.4);
}

/* Form Validation and Animation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    animation: shake 0.5s ease-in-out;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Form Loading States */
.form-actions .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.form-actions .btn.loading {
    position: relative;
    color: transparent;
}

.form-actions .btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form Field Focus Animation */
.form-group {
    animation: fadeInUp 0.6s ease-out;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }

/* Keyframe Animations */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

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

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

/* Form Success/Error States */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.form-group.success::after,
.form-group.error::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.form-group.success::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20,6 9,17 4,12'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-group.error::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='15' y1='9' x2='9' y2='15'%3E%3C/line%3E%3Cline x1='9' y1='9' x2='15' y2='15'%3E%3C/line%3E%3C/svg%3E");
}

.feedback-section {
    text-align: center;
    background: var(--background-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

/* About Page Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission, .vision {
    padding: 2rem;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.values-section {
    margin: 3rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 10px;
}

.value-item h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.team-section {
    margin: 3rem 0;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.highlight {
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.highlight h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.achievements-section {
    margin: 3rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.achievement {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 10px;
}

.achievement h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.commitment-section {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(255,255,255,0.05)">777</text></svg>') repeat;
    pointer-events: none;
}

.commitment-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--highlight-color);
    text-align: center;
    position: relative;
    z-index: 2;
}

.commitment-section > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.commitment-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.commitment-section li {
    margin: 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
}

.commitment-section li::before {
    content: '✓';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: var(--text-light);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.commitment-section li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 404 Error Page Styles */
.error-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.error-code h1 {
    font-size: 8rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-code h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.error-message {
    margin-bottom: 2rem;
}

.error-message p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.error-suggestions {
    margin-bottom: 3rem;
}

.error-suggestions h3 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.error-suggestions ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
}

.error-actions {
    margin-bottom: 3rem;
}

.error-actions h3 {
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.popular-pages {
    margin-bottom: 3rem;
}

.popular-pages h3 {
    color: var(--highlight-color);
    margin-bottom: 2rem;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.page-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
}

.page-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-link a {
    color: var(--text-light);
    text-decoration: none;
}

.page-link h4 {
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.error-help {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.error-help h3 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.error-help ul {
    text-align: left;
    max-width: 500px;
    margin: 1rem auto 0;
}

.error-help li {
    margin-bottom: 0.5rem;
}

/* Policy Footer Styles */
.policy-footer, .terms-footer, .disclaimer-footer {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    margin-top: 4rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 91, 65, 0.2);
}

.policy-footer::before, .terms-footer::before, .disclaimer-footer::before {
    content: '🔒';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(15deg);
}

.policy-footer p, .terms-footer p, .disclaimer-footer p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.policy-footer strong, .terms-footer strong, .disclaimer-footer strong {
    color: var(--text-light);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Privacy Policy Specific Enhancements */
.privacy-highlight {
    background: linear-gradient(135deg, rgba(0, 91, 65, 0.05) 0%, rgba(0, 129, 112, 0.05) 100%);
    border: 1px solid rgba(0, 91, 65, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.privacy-highlight::before {
    content: 'ℹ️';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
}

.privacy-highlight h3 {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.privacy-highlight p {
    margin-bottom: 0;
    color: var(--text-dark);
}

/* Contact Information Styling */
.contact-info-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.8) 100%);
    border: 2px solid rgba(0, 91, 65, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-section h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-info-section ul {
    display: inline-block;
    text-align: left;
    margin: 0;
}

.contact-info-section li {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 91, 65, 0.1);
    margin-bottom: 0.8rem;
}

.contact-info-section li:last-child {
    margin-bottom: 0;
}

/* Last Updated Badge */
.last-updated {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 91, 65, 0.2);
} 