/* FILE: css/style.css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Poppins:wght@400;600;700&display=swap");

:root {
 /* Dark theme with deep purple and neon pink accents */
 --bg-primary: #0a0a0f;
 --bg-secondary: #151520;
 --bg-tertiary: #1f1f2e;
 --accent-primary: #8b5cf6;
 --accent-secondary: #ec4899;
 --accent-tertiary: #a855f7;
 --text-primary: #f8fafc;
 --text-secondary: #cbd5e1;
 --text-muted: #94a3b8;
 --border-color: #2d2d42;
 --success-color: #10b981;
 --warning-color: #f59e0b;
 --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #ec+54 11 4123-0000%);
 --gradient-secondary: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
 --shadow-sm: 0 2px 8px rgba(139, 92, 246, 0.1);
 --shadow-md: 0 4px 16px rgba(139, 92, 246, 0.15);
 --shadow-lg: 0 8px 32px rgba(139, 92, 246, 0.2);
 --glow-primary: 0 0 20px rgba(139, 92, 246, 0.3);
 --glow-secondary: 0 0 20px rgba(236, 72, 153, 0.3);
}

* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}

body {
 font-family: "Inter", sans-serif;
 background-color: var(--bg-primary);
 color: var(--text-primary);
 line-height: 1.6;
 overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
 font-family: "Poppins", sans-serif;
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-primary);
}

a {
 color: var(--accent-primary);
 text-decoration: none;
 transition: all 0.3s ease;
}

a:hover {
 color: var(--accent-secondary);
}

/* Navbar */
.navbar {
 background: rgba(10, 10, 15, 0.95);
 backdrop-filter: blur(10px);
 padding: 1rem 0;
 box-shadow: var(--shadow-md);
 transition: all 0.3s ease;
}

.navbar.scrolled {
 background: rgba(10, 10, 15, 0.98);
 box-shadow: var(--shadow-lg);
}

.navbar-brand {
 font-family: "Poppins", sans-serif;
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--text-primary) !important;
 display: flex;
 align-items: center;
}

.navbar-brand i {
 color: var(--accent-primary);
}

.nav-link {
 color: var(--text-secondary) !important;
 font-weight: 500;
 padding: 0.5rem 1rem !important;
 transition: all 0.3s ease;
 position: relative;
}

.nav-link:hover,
.nav-link.active {
 color: var(--accent-primary) !important;
}

.nav-link::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 50%;
 width: 0;
 height: 2px;
 background: var(--gradient-primary);
 transition: all 0.3s ease;
 transform: translateX(-50%);
}

.nav-link:hover::after {
 width: 80%;
}

.dropdown-menu {
 background: var(--bg-secondary);
 border: 1px solid var(--border-color);
 box-shadow: var(--shadow-lg);
}

.dropdown-item {
 color: var(--text-secondary);
 transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
 background: var(--bg-tertiary);
 color: var(--accent-primary);
}

/* Hero Section */
.hero-section {
 min-height: 100vh;
 display: flex;
 align-items: center;
 padding-top: 100px;
 background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
 position: relative;
 overflow: hidden;
}

.hero-section::before {
 content: "";
 position: absolute;
 top: -50%;
 right: -10%;
 width: 600px;
 height: 600px;
 background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
 border-radius: 50%;
 animation: float 20s ease-in-out infinite;
}

.hero-section::after {
 content: "";
 position: absolute;
 bottom: -30%;
 left: -10%;
 width: 500px;
 height: 500px;
 background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
 border-radius: 50%;
 animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
 0%,
 100% {
 transform: translate(0, 0);
 }
 50% {
 transform: translate(30px, -30px);
 }
}

.hero-content {
 position: relative;
 z-index: 2;
}

.hero-content h1 {
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 margin-bottom: 1.5rem;
}

.hero-content .lead {
 color: var(--text-secondary);
 font-size: 1.25rem;
 line-height: 1.8;
}

.hero-section img {
 position: relative;
 z-index: 2;
 border-radius: 16px;
 box-shadow: var(--shadow-lg);
 border: 1px solid var(--border-color);
}

/* Buttons */
.btn {
 font-weight: 600;
 padding: 0.75rem 2rem;
 border-radius: 12px;
 transition: all 0.3s ease;
 border: none;
 position: relative;
 overflow: hidden;
}

.btn-primary {
 background: var(--gradient-primary);
 color: white;
 box-shadow: var(--glow-primary);
}

.btn-primary:hover {
 transform: translateY(-2px);
 box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.btn-outline-light {
 border: 2px solid var(--accent-primary);
 color: var(--accent-primary);
 background: transparent;
}

.btn-outline-light:hover {
 background: var(--accent-primary);
 color: white;
 transform: translateY(-2px);
}

.btn-outline-primary {
 border: 2px solid var(--accent-primary);
 color: var(--accent-primary);
 background: transparent;
}

.btn-outline-primary:hover {
 background: var(--accent-primary);
 color: white;
 border-color: var(--accent-primary);
}

/* Section Styles */
section {
 padding: 5rem 0;
 position: relative;
}

.bg-section {
 background: var(--bg-secondary);
}

.section-title {
 font-size: 2.5rem;
 margin-bottom: 1rem;
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.section-subtitle {
 color: var(--text-secondary);
 font-size: 1.1rem;
 max-width: 700px;
 margin: 0 auto;
}

/* Problems Section */
.problems-section {
 background: var(--bg-secondary);
}

.problem-card {
 background: var(--bg-tertiary);
 padding: 2rem;
 border-radius: 16px;
 border: 1px solid var(--border-color);
 transition: all 0.3s ease;
 height: 100%;
}

.problem-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
 border-color: var(--accent-primary);
}

.problem-icon {
 width: 60px;
 height: 60px;
 background: var(--gradient-primary);
 border-radius: 12px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 1.5rem;
 box-shadow: var(--glow-primary);
}

.problem-icon i {
 font-size: 1.5rem;
 color: white;
}

.problem-card h4 {
 font-size: 1.25rem;
 margin-bottom: 1rem;
 color: var(--text-primary);
}

.problem-card p {
 color: var(--text-secondary);
 margin: 0;
 font-size: 0.95rem;
}

/* Who Section */
.who-section img {
 border-radius: 16px;
 box-shadow: var(--shadow-lg);
 border: 1px solid var(--border-color);
}

.feature-list {
 list-style: none;
 padding: 0;
}

.feature-list li {
 padding: 1rem 0;
 border-bottom: 1px solid var(--border-color);
 color: var(--text-secondary);
 display: flex;
 align-items: flex-start;
 gap: 1rem;
}

.feature-list li:last-child {
 border-bottom: none;
}

.feature-list i {
 color: var(--accent-primary);
 font-size: 1.25rem;
 margin-top: 0.25rem;
 flex-shrink: 0;
}

/* Approach Section */
.approach-section {
 background: var(--bg-primary);
}

.approach-card {
 background: var(--bg-tertiary);
 padding: 2.5rem;
 border-radius: 16px;
 border: 1px solid var(--border-color);
 transition: all 0.3s ease;
 height: 100%;
 position: relative;
}

.approach-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
 border-color: var(--accent-primary);
}

.approach-number {
 position: absolute;
 top: -20px;
 right: 20px;
 width: 50px;
 height: 50px;
 background: var(--gradient-primary);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 box-shadow: var(--glow-primary);
}

.approach-card h4 {
 margin-bottom: 1rem;
 color: var(--text-primary);
}

.approach-card p {
 color: var(--text-secondary);
 margin-bottom: 1rem;
}

/* Services Section */
.services-section {
 background: var(--bg-primary);
}

.service-card {
 background: var(--bg-tertiary);
 padding: 3rem;
 border-radius: 16px;
 border: 1px solid var(--border-color);
 transition: all 0.3s ease;
 height: 100%;
}

.service-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
 border-color: var(--accent-primary);
}

.service-icon {
 width: 80px;
 height: 80px;
 background: var(--gradient-secondary);
 border-radius: 16px;
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 2rem;
 box-shadow: var(--glow-secondary);
}

.service-icon i {
 font-size: 2rem;
 color: white;
}

.service-card h3 {
 font-size: 1.75rem;
 margin-bottom: 1.5rem;
 color: var(--text-primary);
}

.service-card p {
 color: var(--text-secondary);
 margin-bottom: 1.5rem;
}

.service-card ul {
 color: var(--text-secondary);
 padding-left: 1.5rem;
 margin-bottom: 1.5rem;
}

.service-card ul li {
 margin-bottom: 0.5rem;
}

/* Timeline / Process Section */
.process-section {
 background: var(--bg-secondary);
}

.timeline {
 position: relative;
 max-width: 900px;
 margin: 0 auto;
}

.timeline::before {
 content: "";
 position: absolute;
 left: 30px;
 top: 0;
 bottom: 0;
 width: 2px;
 background: var(--gradient-primary);
}

.timeline-item {
 position: relative;
 padding-left: 80px;
 margin-bottom: 3rem;
}

.timeline-marker {
 position: absolute;
 left: 0;
 width: 60px;
 height: 60px;
 background: var(--gradient-primary);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 box-shadow: var(--glow-primary);
 z-index: 2;
}

.timeline-content {
 background: var(--bg-tertiary);
 padding: 2rem;
 border-radius: 16px;
 border: 1px solid var(--border-color);
}

.timeline-content h4 {
 color: var(--text-primary);
 margin-bottom: 1rem;
}

.timeline-content p {
 color: var(--text-secondary);
 margin: 0;
}

/* Results Section */
.results-section {
 background: var(--bg-primary);
}

.result-card {
 background: var(--bg-tertiary);
 padding: 2.5rem;
 border-radius: 16px;
 border: 1px solid var(--border-color);
 transition: all 0.3s ease;
 text-align: center;
 height: 100%;
}

.result-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
 border-color: var(--accent-primary);
}

.result-icon {
 color: var(--accent-primary);
 margin-bottom: 1.5rem;
}

.result-card h4 {
 margin-bottom: 1rem;
 color: var(--text-primary);
}

.result-card p {
 color: var(--text-secondary);
 margin: 0;
}

/* Contact Form Section */
.contact-form-section {
 background: var(--bg-secondary);
}

.contact-form-wrapper {
 background: var(--bg-tertiary);
 padding: 3rem;
 border-radius: 16px;
 border: 1px solid var(--border-color);
 box-shadow: var(--shadow-lg);
}

.form-label {
 color: var(--text-primary);
 font-weight: 600;
 margin-bottom: 0.5rem;
}

.form-control,
.form-select {
 background: var(--bg-secondary);
 border: 1px solid var(--border-color);
 color: var(--text-primary);
 padding: 0.75rem 1rem;
 border-radius: 8px;
 transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
 background: var(--bg-secondary);
 border-color: var(--accent-primary);
 color: var(--text-primary);
 box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.form-control::placeholder {
 color: var(--text-muted);
}

.form-check-input {
 background-color: var(--bg-secondary);
 border-color: var(--border-color);
}

.form-check-input:checked {
 background-color: var(--accent-primary);
 border-color: var(--accent-primary);
}

.form-check-label {
 color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
 background: var(--bg-primary);
}

.accordion-item {
 background: var(--bg-tertiary);
 border: 1px solid var(--border-color);
 margin-bottom: 1rem;
 border-radius: 12px;
 overflow: hidden;
}

.accordion-button {
 background: var(--bg-tertiary);
 color: var(--text-primary);
 font-weight: 600;
 padding: 1.25rem 1.5rem;
 border: none;
}

.accordion-button:not(.collapsed) {
 background: var(--bg-secondary);
 color: var(--accent-primary);
 box-shadow: none;
}

.accordion-button:focus {
 box-shadow: none;
 border-color: var(--accent-primary);
}

.accordion-button::after {
 filter: brightness(0) saturate(100%) invert(70%) sepia(47%) saturate(2000%) hue-rotate(230deg);
}

.accordion-body {
 background: var(--bg-secondary);
 color: var(--text-secondary);
 padding: 1.5rem;
}

/* CTA Section */
.cta-section {
 background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
 position: relative;
 overflow: hidden;
}

.cta-section::before {
 content: "";
 position: absolute;
 top: -50%;
 right: -20%;
 width: 600px;
 height: 600px;
 background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
 border-radius: 50%;
}

.cta-section h2 {
 color: white;
 -webkit-text-fill-color: white;
}

.cta-section .lead {
 color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
 background: var(--bg-secondary);
 border-top: 1px solid var(--border-color);
}

.footer h5 {
 color: var(--text-primary);
 margin-bottom: 1rem;
}

.footer p,
.footer li {
 color: var(--text-secondary);
 font-size: 0.95rem;
}

.footer ul {
 list-style: none;
 padding: 0;
}

.footer ul li {
 margin-bottom: 0.5rem;
}

.footer ul li a {
 color: var(--text-secondary);
 transition: all 0.3s ease;
}

.footer ul li a:hover {
 color: var(--accent-primary);
 padding-left: 5px;
}

.footer .contact-info li {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 margin-bottom: 0.75rem;
}

.footer .contact-info i {
 color: var(--accent-primary);
}

.footer hr {
 border-color: var(--border-color);
}

/* Page Hero */
.page-hero {
 min-height: 40vh;
 display: flex;
 align-items: center;
 padding-top: 100px;
 background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Service Detail Cards */
.service-detail-card {
 background: var(--bg-tertiary);
 padding: 2rem;
 border-radius: 12px;
 border: 1px solid var(--border-color);
 height: 100%;
 transition: all 0.3s ease;
}

.service-detail-card:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
 border-color: var(--accent-primary);
}

.service-detail-card i {
 color: var(--accent-primary);
}

.service-detail-card h4 {
 margin-top: 1rem;
 margin-bottom: 1rem;
}

.service-detail-card p {
 color: var(--text-secondary);
 margin: 0;
}

/* Problem List */
.problem-list {
 display: flex;
 flex-direction: column;
 gap: 1.5rem;
}

.problem-item {
 display: flex;
 gap: 1.5rem;
 padding: 1.5rem;
 background: var(--bg-tertiary);
 border-radius: 12px;
 border: 1px solid var(--border-color);
 transition: all 0.3s ease;
}

.problem-item:hover {
 border-color: var(--accent-primary);
 box-shadow: var(--shadow-md);
}

.problem-item i {
 color: var(--accent-primary);
 font-size: 1.5rem;
 flex-shrink: 0;
}

.problem-item h5 {
 color: var(--text-primary);
 margin-bottom: 0.5rem;
}

.problem-item p {
 color: var(--text-secondary);
 margin: 0;
}

/* Delivery Steps */
.delivery-step {
 background: var(--bg-tertiary);
 padding: 2rem;
 border-radius: 12px;
 border: 1px solid var(--border-color);
 text-align: center;
 height: 100%;
 transition: all 0.3s ease;
}

.delivery-step:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
 border-color: var(--accent-primary);
}

.step-number {
 width: 50px;
 height: 50px;
 background: var(--gradient-primary);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 font-weight: 700;
 color: white;
 margin: 0 auto 1.5rem;
 box-shadow: var(--glow-primary);
}

.delivery-step h5 {
 color: var(--text-primary);
 margin-bottom: 1rem;
}

.delivery-step p {
 color: var(--text-secondary);
 margin: 0;
}

/* Result Box */
.result-box {
 background: var(--bg-tertiary);
 padding: 2.5rem;
 border-radius: 16px;
 border: 1px solid var(--border-color);
 text-align: center;
 height: 100%;
 transition: all 0.3s ease;
}

.result-box:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-lg);
 border-color: var(--accent-primary);
}

.result-box i {
 color: var(--accent-primary);
}

.result-box h4 {
 margin-top: 1rem;
 margin-bottom: 1rem;
 color: var(--text-primary);
}

.result-box p {
 color: var(--text-secondary);
 margin: 0;
}

/* Contact Info */
.contact-info-box {
 background: var(--bg-tertiary);
 padding: 2rem;
 border-radius: 16px;
 border: 1px solid var(--border-color);
}

.contact-info-item {
 display: flex;
 gap: 1.5rem;
 padding: 1.5rem 0;
 border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
 border-bottom: none;
}

.contact-info-item i {
 color: var(--accent-primary);
 flex-shrink: 0;
}

.contact-info-item h5 {
 color: var(--text-primary);
 margin-bottom: 0.5rem;
 font-size: 1rem;
}

.contact-info-item p,
.contact-info-item a {
 color: var(--text-secondary);
 margin: 0;
}

/* Thank You Page */
.thank-you-section {
 min-height: 80vh;
 display: flex;
 align-items: center;
 padding-top: 100px;
 background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.thank-you-icon {
 width: 120px;
 height: 120px;
 background: var(--gradient-primary);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto;
 box-shadow: var(--glow-primary);
}

.thank-you-icon i {
 font-size: 4rem;
 color: white;
}

/* Legal Pages */
.legal-page {
 min-height: 60vh;
 padding-top: 120px;
 padding-bottom: 80px;
}

.legal-page h1 {
 background: var(--gradient-primary);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.legal-page h2 {
 color: var(--accent-primary);
 margin-top: 2.5rem;
 margin-bottom: 1rem;
 font-size: 1.75rem;
}

.legal-page h3 {
 color: var(--text-primary);
 margin-top: 1.5rem;
 margin-bottom: 0.75rem;
 font-size: 1.25rem;
}

.legal-page p {
 color: var(--text-secondary);
 margin-bottom: 1rem;
 line-height: 1.8;
}

.legal-page ul {
 color: var(--text-secondary);
 margin-bottom: 1.5rem;
 padding-left: 2rem;
}

.legal-page ul li {
 margin-bottom: 0.5rem;
}

.legal-page strong {
 color: var(--text-primary);
}

/* Alerts */
.alert {
 border-radius: 12px;
 border: 1px solid var(--border-color);
}

.alert-info {
 background: rgba(139, 92, 246, 0.1);
 border-color: var(--accent-primary);
 color: var(--text-secondary);
}

.alert-info i {
 color: var(--accent-primary);
}

/* Animation Classes */
[data-animate] {
 opacity: 0;
 transform: translateY(30px);
 transition: all 0.6s ease;
}

[data-animate].animated {
 opacity: 1;
 transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
 .hero-section {
 padding-top: 120px;
 min-height: auto;
 }

 .section-title {
 font-size: 2rem;
 }

 .timeline::before {
 left: 20px;
 }

 .timeline-marker {
 width: 40px;
 height: 40px;
 font-size: 1rem;
 }

 .timeline-item {
 padding-left: 60px;
 }

 .contact-form-wrapper {
 padding: 2rem;
 }
}
