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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: #0F0F0F;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(45deg, #00FFFF, #4DD0E1, #006064);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease-in-out infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.nav-logo {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 0 10px #00FFFF);
}

.brand-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2em;
    letter-spacing: 2px;
}

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

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00FFFF;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00FFFF, #4DD0E1);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.hero-description {
    font-size: 1.3em;
    color: #A0A0A0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

.btn {
    padding: 12px 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, #00FFFF, #006064);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #4DD0E1;
    border: 2px solid #4DD0E1;
}

.btn-secondary:hover {
    background: #4DD0E1;
    color: #0F0F0F;
    box-shadow: 0 4px 15px rgba(77, 208, 225, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #0F0F0F;
}

.btn-disabled {
    background: #2A2A2A;
    color: #666666;
    cursor: not-allowed;
}

/* Hero 3D Cube */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.tech-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: cube-rotate 20s linear infinite;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #00FFFF;
    background: rgba(0, 255, 255, 0.05);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.cube-logo {
    width: 140px;
    height: auto;
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px #00FFFF) brightness(1.2);
    animation: logo-glow 3s ease-in-out infinite alternate;
    z-index: 10;
    position: relative;
}

.cube-face.front { transform: rotateY(0deg) translateZ(100px); }
.cube-face.back { transform: rotateY(180deg) translateZ(100px); }
.cube-face.right { transform: rotateY(90deg) translateZ(100px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(100px); }
.cube-face.top { transform: rotateX(90deg) translateZ(100px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(100px); }

@keyframes cube-rotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes logo-glow {
    0% { 
        filter: drop-shadow(0 0 20px #00FFFF) brightness(1.2);
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 35px #00FFFF) drop-shadow(0 0 15px #006064) brightness(1.4);
        transform: scale(1.08);
    }
}

/* Page Hero */
.page-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
}

.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
}

.page-title {
    font-size: 3em;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.2em;
    color: #A0A0A0;
    max-width: 600px;
    margin: 0 auto;
}

/* Legal Document Styles */
.legal-content {
    padding: 60px 0 100px;
    background: #0F0F0F;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.last-updated {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.last-updated p {
    color: #A0A0A0;
    font-style: italic;
    font-size: 0.9em;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    color: #4DD0E1;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.legal-section h3 {
    color: #FFFFFF;
    font-size: 1.2em;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem;
}

.legal-section p {
    color: #A0A0A0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: #A0A0A0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: #FFFFFF;
}

.contact-info {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

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

/* Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-modal.show {
    opacity: 1;
}

.payment-modal-content {
    background: #1A1A1A;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.payment-modal.show .payment-modal-content {
    transform: scale(1);
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    background: linear-gradient(45deg, #00FFFF, #006064);
}

.payment-modal-header h3 {
    color: #FFFFFF;
    font-size: 1.4em;
    margin: 0;
}

.payment-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.payment-modal-body {
    padding: 2rem;
    text-align: center;
}

.payment-info {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.payment-info h4 {
    color: #4DD0E1;
    font-size: 1.3em;
    margin-bottom: 0.5rem;
}

.payment-info p {
    color: #FFFFFF;
    font-size: 1.1em;
    font-weight: 600;
}

.qr-code-container {
    margin-bottom: 2rem;
}

.payment-qr {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    margin-bottom: 1rem;
    object-fit: cover;
}

.qr-code-container p {
    color: #A0A0A0;
    font-size: 0.9em;
}

.payment-instructions {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
}

.payment-instructions p {
    color: #4DD0E1;
    font-size: 0.95em;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.payment-actions {
    display: flex;
    justify-content: center;
}

.redirect-instruction {
    color: #00FFFF !important;
    font-weight: 600 !important;
    font-size: 1em !important;
}

/* Redirect Modal Styles */
.redirect-content {
    text-align: center;
}

.redirect-info h3 {
    color: #4DD0E1;
    font-size: 1.8em;
    margin-bottom: 1rem;
}

.redirect-info > p {
    color: #A0A0A0;
    font-size: 1.1em;
    margin-bottom: 2rem;
}

.redirect-countdown {
    margin-bottom: 2rem;
}

.redirect-countdown p {
    color: #FFFFFF;
    font-size: 1.1em;
    margin-bottom: 1rem;
}

.redirect-countdown span {
    color: #4DD0E1;
    font-weight: 700;
    font-size: 1.2em;
}

.countdown-bar {
    width: 100%;
    height: 6px;
    background: #2A2A2A;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.countdown-progress {
    height: 100%;
    background: linear-gradient(45deg, #00FFFF, #006064);
    width: 0%;
    transition: width 1s linear;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #1A1A1A;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

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

.feature-card {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px #00FFFF);
}

.feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 1rem;
    color: #4DD0E1;
}

.feature-card p {
    color: #A0A0A0;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
}

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

.service-card {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.5em;
    color: #FFFFFF;
}

.service-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-status.available {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
}

.service-status.coming-soon {
    background: rgba(251, 191, 36, 0.2);
    color: #FBBF24;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #A0A0A0;
    position: relative;
    paddi-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: bold;
}

/* Pricing Plans */
.plan-toggle-section {
    padding: 40px 0;
}

.plan-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
}

.toggle-btn {
    padding: 12px 30px;
    background: transparent;
    color: #A0A0A0;
    border: 2px solid #A0A0A0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toggle-btn:first-child {
    border-radius: 8px 0 0 8px;
}

.toggle-btn:last-child {
    border-radius: 0 8px 8px 0;
}

.toggle-btn.active {
    background: linear-gradient(45deg, #00FFFF, #006064);
    color: #FFFFFF;
    border-color: #00FFFF;
}

.pricing-plans {
    padding: 60px 0 100px;
}

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

.plans-grid.active {
    display: grid;
}

.plan-card {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card.popular {
    border-color: #00FFFF;
    transform: scale(1.05);
}

.plan-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, #00FFFF, #006064);
    color: #FFFFFF;
    padding: 5px 40px;
    font-size: 0.8em;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5em;
    color: #4DD0E1;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5em;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.plan-price span {
    font-size: 0.4em;
    color: #A0A0A0;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    color: #A0A0A0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-label {
    font-weight: 600;
    color: #FFFFFF;
    min-width: 80px;
}

.feature-value {
    color: #4DD0E1;
    font-weight: 600;
}

/* Features Comparison */
.features-comparison {
    padding: 80px 0;
    background: #1A1A1A;
}

.comparison-table {
    max-width: 600px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(31, 31, 31, 0.6);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: rgba(0, 255, 255, 0.1);
}

.feature-row:first-child {
    border-radius: 8px 8px 0 0;
}

.feature-row:last-child {
    border-radius: 0 0 8px 8px;
    border-bottom: none;
}

.feature-name {
    font-weight: 600;
    color: #FFFFFF;
}

.feature-value {
    color: #4DD0E1;
    font-weight: 600;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.2em;
    margin-bottom: 1.5rem;
    color: #4DD0E1;
}

.about-text h3 {
    font-size: 1.5em;
    margin: 2rem 0 1rem;
    color: #FFFFFF;
}

.about-text p {
    color: #A0A0A0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 1rem 0;
    color: #A0A0A0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.about-features li:last-child {
    border-bottom: none;
}

.about-features strong {
    color: #4DD0E1;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.5em;
    font-weight: 900;
    color: #4DD0E1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #A0A0A0;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.technology {
    padding: 100px 0;
    background: #1A1A1A;
}

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

.tech-card {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.tech-icon {
    font-size: 3em;
    margin-bottom: 1rem;
}

.tech-card h3 {
    font-size: 1.3em;
    margin-bottom: 1rem;
    color: #4DD0E1;
}

.tech-card p {
    color: #A0A0A0;
    line-height: 1.6;
}

.values {
    padding: 100px 0;
}

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

.value-card {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.value-card h3 {
    font-size: 1.4em;
    margin-bottom: 1rem;
    color: #4DD0E1;
}

.value-card p {
    color: #A0A0A0;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    font-size: 2.2em;
    margin-bottom: 2rem;
    color: #4DD0E1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.1em;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(31, 31, 31, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00FFFF;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9em;
    color: #A0A0A0;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    border: 1px solid #22C55E;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
    border: 1px solid #EF4444;
}

.contact-info h2 {
    font-size: 2.2em;
    margin-bottom: 2rem;
    color: #4DD0E1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #00FFFF;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2em;
    filter: drop-shadow(0 0 10px #00FFFF);
}

.contact-details h3 {
    font-size: 1.2em;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.contact-details p {
    color: #A0A0A0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #1A1A1A;
}

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

.faq-item {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: #00FFFF;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.faq-item h3 {
    font-size: 1.3em;
    margin-bottom: 1rem;
    color: #4DD0E1;
}

.faq-item p {
    color: #A0A0A0;
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content h3 {
    font-size: 1.2em;
    margin-bottom: 0.5rem;
    color: #4DD0E1;
}

.cookie-content p {
    color: #A0A0A0;
    font-size: 0.9em;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9em;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1A1A1A;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.cookie-modal-header h3 {
    color: #4DD0E1;
    font-size: 1.4em;
}

.close-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(0, 255, 255, 0.2);
}

.cookie-modal-body {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

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

.slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: #2A2A2A;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle input:checked + .slider {
    background: #00FFFF;
}

.cookie-toggle input:checked + .slider::before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .slider {
    opacity: 0.5;
}

.cookie-info h4 {
    color: #FFFFFF;
    font-size: 1.1em;
    margin-bottom: 0.5rem;
}

.cookie-info p {
    color: #A0A0A0;
    font-size: 0.9em;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-content p {
    font-size: 1.2em;
    color: #A0A0A0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: #1A1A1A;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 30px;
    height: auto;
    filter: drop-shadow(0 0 5px #00FFFF);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4DD0E1;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9em;
}

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00FFFF, #4DD0E1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
    animation: pulse-chatbot 2s infinite;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 255, 255, 0.6);
}

.chatbot-icon {
    font-size: 1.5em;
    color: #FFFFFF;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chatbot-window.show {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(45deg, #00FFFF, #4DD0E1);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    color: #FFFFFF;
    font-size: 1.1em;
    margin: 0;
}

.chatbot-close {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9em;
    line-height: 1.4;
}

.chatbot-message.user {
    background: linear-gradient(45deg, #00FFFF, #4DD0E1);
    color: #FFFFFF;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-message.bot {
    background: rgba(31, 31, 31, 0.8);
    color: #FFFFFF;
    border: 1px solid rgba(0, 255, 255, 0.3);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chatbot-message.typing {
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.typing-indicator {
    display: flex;
    gap: 3px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #00FFFF;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

.chatbot-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(31, 31, 31, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9em;
}

.chatbot-input input:focus {
    outline: none;
    border-color: #00FFFF;
}

.chatbot-input button {
    padding: 0.8rem 1rem;
    background: linear-gradient(45deg, #00FFFF, #4DD0E1);
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.4);
}

.chatbot-input button:disabled {
    background: #2A2A2A;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Animations */
@keyframes pulse-chatbot {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 0 4px 30px rgba(0, 255, 255, 0.8);
    }
}

@keyframes typing-bounce {
    0%, 80%, 100% { 
        transform: scale(0);
    }
    40% { 
        transform: scale(1);
    }
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3em;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(0, 255, 255, 0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .page-title {
        font-size: 2.5em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid,
    .services-grid,
    .tech-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-toggle {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    .toggle-btn:first-child {
        border-radius: 8px 8px 0 0;
    }
    
    .toggle-btn:last-child {
        border-radius: 0 0 8px 8px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 400px;
        right: -10px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .payment-modal-content {
        width: calc(100vw - 40px);
        max-width: none;
    }
    
    .payment-qr {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .hero-description {
        font-size: 1.1em;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    
    .feature-card,
    .service-card,
    .tech-card,
    .value-card,
    .faq-item,
    .plan-card {
        padding: 1.5rem;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card.popular::before {
        top: 10px;
        right: -25px;
        padding: 3px 30px;
        font-size: 0.7em;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .chatbot-icon {
        font-size: 1.2em;
    }
    
    .chatbot-window {
        width: calc(100vw - 30px);
        height: 350px;
        bottom: 75px;
        right: -5px;
    }
    
    .payment-modal-content {
        width: calc(100vw - 20px);
    }
    
    .payment-modal-body {
        padding: 1.5rem;
    }
    
    .payment-qr {
        width: 120px;
        height: 120px;
    }
    
    .redirect-info h3 {
        font-size: 1.5em;
    }
}
