/* Color Variables */
:root {
    --primary-red: #CE2A1F;
    --primary-orange: #B8601C;
    --background-light: #F6C8A5;
    --background-orange: #DF7321;
    --white: #FFFFFF;
    --text-dark: #2C1810;
    --text-light: #8B4513;
    --gradient-primary: linear-gradient(135deg, #CE2A1F, #B8601C);
    --gradient-background: linear-gradient(135deg, #F6C8A5, #DF7321);
    --gradient-accent: linear-gradient(45deg, #CE2A1F, #B8601C, #DF7321);
    --shadow-primary: 0 20px 60px rgba(206, 42, 31, 0.3);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(206, 42, 31, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-red);
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-background);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(206, 42, 31, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 96, 28, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(223, 115, 33, 0.15) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.1;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-container {
    position: relative;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-main {
    display: block;
    color: var(--text-dark);
}

.title-rpg {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.8em;
}

.title-accent {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: accentPulse 2s ease-in-out infinite;
}

@keyframes accentPulse {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.2); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(206, 42, 31, 0.4);
}

.btn-accent {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover .btn-accent {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-5px);
}

/* Game Showcase */
.hero-visual {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.game-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.showcase-frame {
    position: relative;
    background: var(--text-dark);
    border-radius: 30px;
    padding: 20px;
    box-shadow: var(--shadow-primary);
    animation: showcaseFloat 3s ease-in-out infinite;
}

@keyframes showcaseFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.hero-game-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.showcase-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 2s ease;
    width: 0;
}

.stat-label {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 60px;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-accent {
    width: 100px;
    height: 6px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 3px;
    animation: accentPulse 2s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.feature-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(206, 42, 31, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 30px;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(206, 42, 31, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(206, 42, 31, 0.2);
}

.feature-visual {
    flex-shrink: 0;
}

.feature-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.icon-symbol {
    font-size: 2rem;
    color: var(--white);
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-accent {
    width: 40px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: accentPulse 2s ease-in-out infinite;
}

/* Screenshots Section */
.screenshots {
    padding: 120px 0;
    background: var(--background-light);
}

.screenshots-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.screenshot-main {
    position: relative;
}

.screenshot-main .screenshot-frame {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-primary);
    transition: transform 0.3s ease;
}

.screenshot-main:hover .screenshot-frame {
    transform: scale(1.05);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.screenshot-item {
    position: relative;
}

.screenshot-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}

.screenshot-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-frame:hover .screenshot-img {
    transform: scale(1.1);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-frame:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Story Section */
.story {
    padding: 120px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-header {
    margin-bottom: 40px;
    position: relative;
}

.story-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.story-accent {
    width: 80px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: accentPulse 2s ease-in-out infinite;
}

.story-paragraphs p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-card {
    background: var(--gradient-background);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.power-indicator {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.power-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.power-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 6px;
    width: 0;
    animation: powerFill 3s ease-in-out infinite;
}

@keyframes powerFill {
    0%, 100% { width: 0%; }
    50% { width: 100%; }
}

.power-text {
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 25px;
    color: var(--primary-red);
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .screenshots-showcase {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation for stat bars */
.stat-fill[data-width="95"] {
    animation: fillBar 2s ease-out 0.5s forwards;
}

.stat-fill[data-width="88"] {
    animation: fillBar 2s ease-out 1s forwards;
}

.stat-fill[data-width="92"] {
    animation: fillBar 2s ease-out 1.5s forwards;
}

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--data-width, 0%); }
}

/* Enhanced Policy Pages Styles */
.policy-page {
    padding: 120px 0 60px;
    background: var(--white);
    min-height: 100vh;
}

.policy-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: var(--gradient-background);
    border-radius: 30px;
    box-shadow: var(--shadow-primary);
}

.header-content {
    text-align: left;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
}

.header-accent {
    width: 100px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    margin-bottom: 20px;
    animation: accentPulse 2s ease-in-out infinite;
}

.policy-subtitle {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 20px;
}

.policy-date {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-shield {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.privacy-shield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(206, 42, 31, 0.05), transparent);
    pointer-events: none;
}

.shield-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
}

.shield-symbol {
    font-size: 2.5rem;
    color: var(--white);
}

.shield-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 60px;
    padding: 50px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 42, 31, 0.02), transparent);
    pointer-events: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.section-icon {
    flex-shrink: 0;
}

.icon-bg {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.icon-symbol {
    font-size: 1.8rem;
    color: var(--white);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.section-content {
    margin-left: 85px;
}

.section-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.data-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.data-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--gradient-background);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.data-item:hover {
    transform: translateY(-5px);
}

.data-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.data-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.data-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-info {
    background: var(--gradient-background);
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: var(--shadow-soft);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-orange);
}

.policy-footer {
    text-align: center;
    padding: 50px;
    background: var(--gradient-background);
    border-radius: 25px;
    margin-top: 50px;
    box-shadow: var(--shadow-soft);
}

.policy-footer p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Contact Page Enhanced Styles */
.contact-page {
    padding: 120px 0 60px;
    background: var(--white);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: var(--gradient-background);
    border-radius: 30px;
    box-shadow: var(--shadow-primary);
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Developer Info Enhanced */
.developer-info {
    margin-bottom: 80px;
}

.developer-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    padding: 50px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-primary);
    border: 1px solid rgba(206, 42, 31, 0.1);
    position: relative;
    overflow: hidden;
}

.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 42, 31, 0.02), transparent);
    pointer-events: none;
}

.developer-avatar {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    position: relative;
}

.developer-avatar::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.avatar-icon {
    font-size: 4rem;
    color: var(--white);
}

.developer-details h2 {
    font-size: 1.8rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.developer-details h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.developer-bio {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--gradient-background);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.contact-details strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-orange);
}

/* Enhanced Form Styles */
.contact-form-section {
    margin-bottom: 80px;
}

.form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-primary);
    border: 1px solid rgba(206, 42, 31, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 42, 31, 0.02), transparent);
    pointer-events: none;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.form-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.form-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-form {
    display: grid;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 20px;
    border: 2px solid rgba(206, 42, 31, 0.2);
    border-radius: 15px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(206, 42, 31, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin: 0;
    accent-color: var(--primary-red);
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(206, 42, 31, 0.4);
}

.form-success {
    text-align: center;
    padding: 50px;
    background: var(--gradient-background);
    border-radius: 25px;
    margin-top: 30px;
    box-shadow: var(--shadow-soft);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-success p {
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Enhanced FAQ Section */
.faq-section {
    margin-bottom: 80px;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.faq-item {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid var(--primary-red);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 42, 31, 0.02), transparent);
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(206, 42, 31, 0.15);
}

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Enhanced Social Section */
.social-section {
    text-align: center;
    padding: 60px;
    background: var(--gradient-background);
    border-radius: 30px;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.social-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.social-section p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(206, 42, 31, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(206, 42, 31, 0.2);
}

.social-icon {
    font-size: 2.5rem;
}

.social-link span:last-child {
    font-weight: 600;
    font-size: 1rem;
}

/* Active nav link */
.nav-link.active {
    color: var(--primary-red);
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .policy-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .header-content {
        text-align: center;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .policy-section {
        padding: 30px 20px;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .section-content {
        margin-left: 0;
    }

    .data-items {
        grid-template-columns: 1fr;
    }

    .developer-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-methods {
        align-items: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .form-container {
        padding: 30px 20px;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }
}