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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #6dd5ed;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-accept {
    background: #2193b0;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1a7a92;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2193b0;
}

.nav-brand a {
    color: inherit;
}

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

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

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

.nav-menu li a {
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #2193b0;
}

/* Hero Section */
.hero-visual {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    margin-top: 70px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23667eea" width="1200" height="800"/><g fill-opacity="0.1"><circle fill="%23ffffff" cx="200" cy="200" r="150"/><circle fill="%23ffffff" cx="1000" cy="600" r="200"/><circle fill="%23ffffff" cx="600" cy="100" r="100"/></g></svg>') center/cover;
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    max-width: 900px;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Container Styles */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Story Intro Section */
.story-intro {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.story-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2193b0;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(33, 147, 176, 0.1) 0%, transparent 100%);
    border-left: 4px solid #2193b0;
}

/* Problem Section */
.problem-amplify {
    padding: 5rem 2rem;
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-left,
.split-right {
    flex: 1;
}

.problem-amplify h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #c0392b;
    font-weight: 700;
}

.problem-list {
    margin: 2rem 0;
}

.problem-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #2c3e50;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: bold;
}

.bold-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-top: 1.5rem;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.image-placeholder:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.problem-img {
    background: linear-gradient(135deg, #c0392b 0%, #8e2b1f 100%);
}

/* Insight Section */
.insight-reveal {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 5rem 2rem;
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.insight-reveal p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.stat-boxes {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #6dd5ed;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #6dd5ed;
    color: #1a1a1a;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #2193b0;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Trust Building Section */
.trust-building {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.centered-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.process-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

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

.process-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #667eea;
    opacity: 0.2;
    margin-bottom: 1rem;
}

.process-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.process-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Testimonial Section */
.testimonial-inline {
    background: #667eea;
    padding: 4rem 2rem;
}

.testimonial-inline blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.8;
    position: relative;
    padding: 0;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Services Section */
.services-reveal {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #4a5568;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.service-card.featured .service-features li:before {
    color: #6dd5ed;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #fbbf24;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-card.featured .service-features li:before {
    color: #6dd5ed;
}

.service-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: #2193b0;
}

.service-card.featured .service-price {
    color: #6dd5ed;
}

.btn-select-service {
    padding: 1rem 2rem;
    background: #2193b0;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a7a92;
    transform: translateY(-2px);
}

.service-card.featured .btn-select-service {
    background: #ffffff;
    color: #667eea;
}

.service-card.featured .btn-select-service:hover {
    background: #f0f0f0;
}

/* Social Proof Section */
.social-proof {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 1.05rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #ffffff;
    padding: 5rem 2rem;
}

.centered {
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.urgency-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.urgency-text {
    font-weight: 700;
    font-size: 1.3rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #c0392b;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Form Section */
.form-section {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-section > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #4a5568;
}

.main-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    padding: 1.2rem 3rem;
    background: #2193b0;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a7a92;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    background: #2c3e50;
    color: #ffffff;
    padding: 5rem 2rem;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #6dd5ed;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9998;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideInRight 0.5s ease;
}

.sticky-cta-btn {
    padding: 1rem 2rem;
    background: #667eea;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #764ba2;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8rem 2rem 4rem;
    margin-top: 70px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Styles */
.about-story {
    padding: 5rem 2rem;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-story p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-img {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
}

.values-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
    font-weight: 700;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.team-intro {
    padding: 5rem 2rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.achievements {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 5rem 2rem;
}

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.achievements-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.achievement-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.achievement-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #6dd5ed;
    margin-bottom: 0.5rem;
}

.achievement-box p {
    font-size: 1rem;
    opacity: 0.9;
}

.mission-section {
    padding: 5rem 2rem;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.mission-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.cta-about {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-about p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

/* Services Page Styles */
.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-detail h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #667eea;
    font-weight: 700;
}

.detailed-list {
    margin: 1rem 0 1.5rem;
}

.detailed-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a5568;
}

.detailed-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2193b0;
}

.service-note {
    font-size: 0.95rem;
    font-style: italic;
    color: #4a5568;
    margin-top: 1rem;
}

.service-img-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-img-2 {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
}

.service-img-3 {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

.service-img-4 {
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
}

.service-img-5 {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
}

.service-img-6 {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.custom-solution {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.custom-solution h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.custom-solution p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

/* Contact Page Styles */
.contact-main {
    padding: 5rem 2rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.5;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #667eea;
    font-weight: 700;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.info-block a {
    color: #2193b0;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.info-note p {
    font-size: 0.95rem;
    color: #856404;
    margin: 0;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-wrapper > p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.faq-section {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Thanks Page Styles */
.thanks-hero {
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    color: #ffffff;
    padding: 6rem 2rem 4rem;
    margin-top: 70px;
}

.thanks-icon {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.2);
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.thanks-content {
    padding: 5rem 2rem;
}

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-service-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f0f9ff;
    border-left: 4px solid #2193b0;
    border-radius: 8px;
}

.thanks-service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2193b0;
    font-weight: 700;
}

.thanks-service-info p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.service-note {
    font-size: 0.95rem;
    color: #4a5568;
    font-style: italic;
}

.thanks-next {
    background: #f9fafb;
    padding: 5rem 2rem;
}

.thanks-next h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.next-actions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.action-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.action-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #667eea;
    font-weight: 700;
}

.action-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-social {
    padding: 3rem 2rem;
}

.social-text {
    font-size: 1.1rem;
    color: #4a5568;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 2rem 4rem;
    margin-top: 70px;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.updated {
    font-size: 0.9rem;
    color: #667eea;
    margin-bottom: 3rem;
    font-weight: 600;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
    font-weight: 700;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page a {
    color: #2193b0;
}

.legal-page a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-content,
    .service-detail {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem !important;
    }

    .stat-boxes,
    .process-flow,
    .services-grid,
    .testimonials-grid,
    .values-grid,
    .achievements-grid,
    .next-actions {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .container-narrow,
    .container-wide,
    .container-form {
        padding: 3rem 1.5rem;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-hero,
    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .main-form {
        padding: 2rem 1.5rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}