/* Hero Section */
.hero {
    background-color: #2a2a2a;
    padding: 100px 0 40px;
    display: flex;
    align-items: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}
    /* Gaming Font Alternative */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&display=swap');

/* ArcadeClassic Font */
@font-face {
    font-family: 'ArcadeClassic';
    src: url('https://db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.eot');
    src: url('https://db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.eot?#iefix') format('embedded-opentype'),
         url('https://db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.woff') format('woff'),
         url('https://db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.ttf') format('truetype'),
         url('https://db.onlinewebfonts.com/t/8e22783d707ad140bffe18b2a3812529.svg#ArcadeClassic') format('svg');
    font-display: swap;
}

/* Valorant-style background elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(74, 144, 226, 0.06) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(244, 196, 48, 0.04) 50%, transparent 70%),
        radial-gradient(ellipse at top left, rgba(255, 70, 85, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(74, 144, 226, 0.07) 0%, transparent 60%);
    background-size: 
        200px 200px,
        150px 150px,
        800px 400px,
        600px 300px;
    animation: backgroundShift 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    25% { 
        transform: translateX(10px) translateY(-5px) rotate(0.5deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(-5px) translateY(10px) rotate(-0.3deg);
        opacity: 0.45;
    }
    75% { 
        transform: translateX(8px) translateY(-8px) rotate(0.2deg);
        opacity: 0.35;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0f1419;
    --secondary-blue: #1a2332;
    --accent-blue: #2d3a4f;
    --light-blue: #4a90e2;
    --gold: #f4c430;
    --white: #ffffff;
    --light-gray: #e5e5e5;
    --dark-gray: #666666;
    --gradient: linear-gradient(135deg, #0f1419 0%, #2d3a4f 100%);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-blue);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 196, 48, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 70, 85, 0.07) 0%, transparent 50%),
        linear-gradient(135deg, rgba(15, 20, 25, 0.4) 0%, rgba(45, 58, 79, 0.35) 50%, rgba(15, 20, 25, 0.4) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(74,144,226,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    background-size: 
        800px 800px,
        600px 600px, 
        400px 400px,
        100% 100%,
        50px 50px;
    background-position: 
        top left,
        top right,
        center center,
        center center,
        center center;
    background-attachment: fixed;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(45, 58, 79, 0.9) 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.logo-icon {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--light-blue), var(--gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.logo-icon i {
    font-size: 22px;
    color: var(--white);
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--light-blue), var(--gold));
    border-radius: 14px;
    opacity: 0.5;
    filter: blur(8px);
    z-index: -1;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.05); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gold);
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    color: var(--gold);
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-2px);
}

.header-features {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.header-feature:hover {
    background: rgba(74, 144, 226, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--light-blue), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 11px;
    color: var(--white);
}

.header-feature span {
    color: var(--light-blue);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    font-family: 'Orbitron', monospace;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,5 85,25 85,75 50,95 15,75 15,25" fill="none" stroke="rgba(74,144,226,0.1)" stroke-width="0.5"/></svg>'),
        radial-gradient(circle at 30% 70%, rgba(244, 196, 48, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, rgba(74, 144, 226, 0.08) 0%, transparent 25%, rgba(255, 70, 85, 0.07) 75%, transparent 100%);
    background-size: 
        80px 80px,
        400px 400px,
        100% 100%;
    background-position: 
        center center,
        top right,
        center center;
    opacity: 0.4;
    animation: heroBackgroundFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroBackgroundFloat {
    0%, 100% { 
        transform: translateX(0) translateY(0);
        opacity: 0.4;
    }
    33% { 
        transform: translateX(20px) translateY(-10px);
        opacity: 0.3;
    }
    66% { 
        transform: translateX(-15px) translateY(15px);
        opacity: 0.45;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gold), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-blue);
    font-family: 'Orbitron', 'ArcadeClassic', monospace;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.3));
    white-space: nowrap;
    line-height: 1;
    font-variant: normal;
    font-style: normal;
}

.feature i {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.cta-button {
    background: linear-gradient(45deg, var(--light-blue), var(--gold));
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.valorant-logo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 40px rgba(74, 144, 226, 0.1);
    position: relative;
    overflow: hidden;
}

.logo-layers {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valorant-logo i {
    font-size: 3.5rem;
    color: var(--gold);
    z-index: 3;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: trophyFloat 3s ease-in-out infinite alternate;
}

@keyframes trophyFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-8px) scale(1.03); }
}

.logo-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 2px solid var(--light-blue);
    border-radius: 50%;
    border-top: 2px solid transparent;
    border-right: 2px solid transparent;
    animation: ringRotate 8s linear infinite;
    opacity: 0.7;
}

.logo-ring-outer {
    position: absolute;
    width: 170px;
    height: 170px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    animation: ringRotate 12s linear infinite reverse;
    opacity: 0.5;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #2a2a2a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--accent-blue);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--light-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--light-blue), var(--gold));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.5rem;
    color: var(--light-blue);
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.calculator-subtitle {
    text-align: center;
    color: var(--light-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--secondary-blue);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.rank-select,
.calculator-form input,
.calculator-form select {
    padding: 12px;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.rank-select:focus,
.calculator-form input:focus,
.calculator-form select:focus {
    outline: none;
    border-color: var(--light-blue);
}

.additional-options {
    margin-top: 2rem;
}

.additional-options h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.option-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--primary-blue);
    transition: background-color 0.3s ease;
}

.option-item:hover {
    background-color: var(--accent-blue);
}

.option-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-blue);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.option-item input[type="checkbox"]:checked + .checkmark {
    background-color: var(--light-blue);
    border-color: var(--light-blue);
}

.option-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.option-text {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.calculator-result {
    display: flex;
    align-items: flex-start;
}

.result-card {
    background: var(--secondary-blue);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--gold);
    width: 100%;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.2);
}

.result-card h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.rank-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--primary-blue);
    border-radius: 8px;
}

.rank-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.rank-label {
    color: var(--light-gray);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.rank-value {
    color: var(--light-blue);
    font-weight: bold;
    font-size: 1rem;
}

.rank-arrow {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 1rem;
}

.price-breakdown {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.price-item span:last-child {
    color: var(--light-blue);
}

.total-price {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--primary-blue);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.total-price span:first-child {
    color: var(--gold);
}

.total-price span:last-child {
    color: var(--gold);
    font-size: 1.5rem;
}

.estimated-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.estimated-time i {
    color: var(--light-blue);
}

.order-button {
    width: 100%;
    background: linear-gradient(45deg, var(--light-blue), var(--gold));
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.order-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.order-button:disabled {
    background: var(--dark-gray);
    cursor: not-allowed;
    opacity: 0.6;
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.calculator-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--light-gray);
    font-size: 0.9rem;
}

.calculator-features .feature-item i {
    color: var(--light-blue);
    width: 16px;
}

/* Responsive Calculator */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .rank-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rank-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        justify-content: center;
    }

    .valorant-logo {
        width: 150px;
        height: 150px;
    }

    .valorant-logo i {
        font-size: 2.5rem;
    }

    .logo-ring {
        width: 100px;
        height: 100px;
    }

    .logo-ring-outer {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .calculator-form,
    .result-card {
        padding: 1.5rem;
    }
    
    .total-price span:last-child {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.pricing {
    padding: 80px 0;
    background-color: var(--primary-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--secondary-blue);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid var(--accent-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    border-color: var(--gold);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--primary-blue);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.rank-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rank-badge.iron {
    background: #4a4a4a;
    color: white;
}

.rank-badge.silver {
    background: #c0c0c0;
    color: #333;
}

.rank-badge.gold {
    background: var(--gold);
    color: #333;
}

.rank-badge.diamond {
    background: #4fc3f7;
    color: white;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.pricing-button {
    background: linear-gradient(45deg, var(--light-blue), var(--gold));
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.pricing-button:hover {
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-blue);
}

.stat-label {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--light-blue);
    margin-top: 0.5rem;
}

.feature-item h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--light-gray);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #2a2a2a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-blue);
}

.contact-method i {
    font-size: 1.5rem;
}

.contact-form {
    background: var(--secondary-blue);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    background-color: var(--accent-blue);
    color: var(--white);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
}

.submit-button {
    background: linear-gradient(45deg, var(--light-blue), var(--gold));
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    padding: 40px 0 20px;
    border-top: 1px solid var(--accent-blue);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-blue);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--light-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-blue);
    color: var(--dark-gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-features {
        display: none;
    }
    
    .nav-container {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(45, 58, 79, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.8rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon i {
        font-size: 18px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        justify-content: center;
    }

    .valorant-logo {
        width: 150px;
        height: 150px;
    }

    .valorant-logo i {
        font-size: 2.5rem;
    }

    .logo-ring {
        width: 100px;
        height: 100px;
    }

    .logo-ring-outer {
        width: 120px;
        height: 120px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}