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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #1a365d;
}

h2 {
    font-size: 2rem;
    color: #2d4a67;
}

h3 {
    font-size: 1.5rem;
    color: #2d4a67;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5aa0;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #2a4a7a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #3182ce;
    padding: 12px 24px;
    border: 2px solid #3182ce;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #3182ce;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.3);
}

/* Header and Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3182ce;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3182ce;
    transition: width 0.3s ease;
}

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

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Split Section */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 60px;
}

.hero-left {
    flex: 1;
    padding: 0 60px 0 120px;
    max-width: 50%;
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.impact-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-content .highlight {
    background: linear-gradient(135deg, #3182ce 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.quick-stat {
    text-align: center;
}

.quick-stat strong {
    display: block;
    font-size: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.quick-stat span {
    color: #718096;
    font-size: 0.9rem;
}

.cta-button {
    background: linear-gradient(135deg, #3182ce 0%, #1e40af 100%);
    color: white;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(49, 130, 206, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.4);
}

.floating-cards {
    position: relative;
    height: 400px;
}

.success-card, .service-preview {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.success-card {
    top: 20px;
    right: 20px;
    width: 200px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.service-preview {
    bottom: 40px;
    left: 40px;
    width: 220px;
    text-align: center;
}

.service-preview img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.testimonial-mini p {
    font-style: italic;
    margin-bottom: 8px;
    color: white;
}

.testimonial-mini small {
    opacity: 0.9;
}

.floating-cards .success-card:hover,
.floating-cards .service-preview:hover {
    transform: translateY(-5px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About & Results Section */
.about-results {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

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

.card-header h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin: 0;
}

.experience-badge {
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.point-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point h4 {
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-size: 1.1rem;
}

.point p {
    color: #4a5568;
    margin: 0;
}

.results-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-metric {
    background: linear-gradient(135deg, #3182ce 0%, #1e40af 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(49, 130, 206, 0.3);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.success-stories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #10b981;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.story-result {
    font-weight: 600;
    color: #10b981;
    font-size: 1.1rem;
}

.story-name {
    color: #718096;
    font-size: 0.9rem;
}

/* Diagonal Services Section */
.services-diagonal {
    position: relative;
    padding: 100px 0;
    background: #1a202c;
    color: white;
    overflow: hidden;
}

.diagonal-bg {
    position: absolute;
    top: -50px;
    left: -50%;
    right: -50%;
    height: 120%;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    transform: skewY(-3deg);
    z-index: 0;
}

.services-diagonal .container {
    position: relative;
    z-index: 1;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.services-intro p {
    font-size: 1.2rem;
    color: #a0aec0;
}

.services-flow {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.service-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
}

.service-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #3182ce;
    z-index: 1;
}

.service-step::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3182ce 0%, #1e40af 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.step-icon {
    margin: 40px auto 20px;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.step-icon img {
    width: 50px;
    height: 50px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.step-content p {
    color: #cbd5e0;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-features span {
    background: rgba(49, 130, 206, 0.2);
    color: #90cdf4;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.proof-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: start;
}

.testimonials-column {
    padding-right: 2rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.trust-indicators {
    margin-bottom: 3rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    color: #f6ad55;
    font-size: 1.5rem;
}

.rating-summary span {
    color: #a0aec0;
    font-size: 0.95rem;
}

.testimonial-spotlight {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-main {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: #3182ce;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-main p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 20px 0 25px;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info strong {
    display: block;
    color: white;
    font-size: 1.1rem;
}

.author-info span {
    color: #a0aec0;
    font-size: 0.9rem;
}

.result-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.testimonial-mini {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-mini p {
    color: #e2e8f0;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-style: italic;
}

.testimonial-mini small {
    color: #a0aec0;
    font-size: 0.8rem;
}

.mini-rating {
    color: #f6ad55;
    font-size: 0.8rem;
    margin-top: 4px;
}

.blog-column {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-header {
    margin-bottom: 2rem;
}

.blog-header h3 {
    color: #1a202c;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-header p {
    color: #718096;
    margin: 0;
}

.featured-article {
    position: relative;
    margin-bottom: 2rem;
}

.article-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #f6ad55 0%, #ed8936 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.featured-article img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.article-content h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.article-content h4 a {
    color: inherit;
    text-decoration: none;
}

.article-content h4 a:hover {
    color: #3182ce;
}

.article-content p {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-time {
    color: #718096;
    font-size: 0.8rem;
}

.read-link {
    color: #3182ce;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.read-link:hover {
    color: #2c5aa0;
}

.quick-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-article a {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.quick-article a:hover {
    background: #f7fafc;
}

.quick-article img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.quick-article h5 {
    color: #1a202c;
    font-size: 0.9rem;
    margin: 0 0 4px 0;
}

.quick-article span {
    color: #718096;
    font-size: 0.8rem;
}

/* Extended Blog Section */
.blog-extended {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.blog-intro h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin: 0;
}

.view-all {
    color: #3182ce;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #3182ce;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-all:hover {
    background: #3182ce;
    color: white;
}

.blog-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card.large {
    grid-row: span 2;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card.large img {
    height: 250px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-content h3, .blog-content h4 {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content h3 a, .blog-content h4 a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover, .blog-content h4 a:hover {
    color: #3182ce;
}

.blog-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 0.8rem;
}

.blog-card:not(.large) .blog-content {
    padding: 1rem;
}

.blog-card:not(.large) img {
    height: 120px;
}

.blog-card:not(.large) h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.blog-card:not(.large) .blog-meta {
    margin-top: 0.8rem;
}

/* Contact Split Section */
.contact-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-promise {
    flex: 1;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-content {
    max-width: 500px;
}

.promise-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.contact-promise h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-promise p {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.promise-points {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promise-point {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.point-check {
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.promise-point span {
    color: #e2e8f0;
    font-size: 1rem;
}

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

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-method.priority {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.method-icon {
    font-size: 1.5rem;
    width: 50px;
    text-align: center;
}

.method-info strong {
    display: block;
    color: white;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.method-info a {
    color: #90cdf4;
    text-decoration: none;
    font-size: 1.1rem;
}

.method-info a:hover {
    color: white;
}

.method-info small {
    display: block;
    color: #a0aec0;
    font-size: 0.9rem;
    margin-top: 4px;
}

.contact-form-section {
    flex: 1;
    background: white;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-container {
    width: 100%;
    max-width: 500px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #718096;
    font-size: 1rem;
}

/* Modern Contact Form */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
}

.form-group.half {
    flex: 1;
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    background: white;
    box-shadow: 0 0 0 4px rgba(49, 130, 206, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy {
    margin: 1rem 0;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.privacy-checkbox input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.privacy-checkbox input:checked + .checkmark {
    background: #3182ce;
    border-color: #3182ce;
}

.privacy-checkbox input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

.privacy-checkbox a {
    color: #3182ce;
    text-decoration: none;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

.submit-button {
    background: linear-gradient(135deg, #3182ce 0%, #1e40af 100%);
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(49, 130, 206, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(49, 130, 206, 0.4);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.submit-button:hover .button-arrow {
    transform: translateX(4px);
}

.security-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 12px 16px;
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2f855a;
}

.security-icon {
    font-size: 1.1rem;
}

.error-message {
    color: #e53e3e;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e53e3e;
    background: #fff5f5;
}

.form-group.error .error-message {
    display: block;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #3182ce;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #a0aec0;
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid #4a5568;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: white;
    border-color: #3182ce;
    background: #3182ce;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    color: #718096;
    margin: 0;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.cookie-content p {
    margin-bottom: 1rem;
    color: #666;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.cookie-categories {
    margin-bottom: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cookie-toggle input {
    margin-right: 0.5rem;
    display: none;
}

.cookie-slider {
    position: relative;
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    margin-right: 0.5rem;
    transition: background 0.3s ease;
}

.cookie-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle input:checked + .cookie-slider {
    background: #3182ce;
}

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

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0 80px;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you h1 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.next-steps {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #3182ce;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

.contact-reminder {
    background: #e6fffa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
    margin: 2rem 0;
}

.contact-reminder h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.thank-you-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    color: #2d4a67;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    color: #2d4a67;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f7fafc;
    color: #1a365d;
    font-weight: 600;
}

.back-link {
    margin-top: 3rem;
    text-align: center;
}

/* Blog Article Styles */
.blog-article {
    padding: 120px 0 40px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.article-hero-image {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-date,
.article-category,
.article-reading-time {
    color: #3182ce;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.article-content ul,
.article-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Info Boxes */
.info-box,
.warning-box,
.success-box,
.cta-box,
.comparison-box {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.info-box {
    background: #e6f3ff;
    border-left: 4px solid #3182ce;
}

.warning-box {
    background: #fff5f5;
    border-left: 4px solid #e53e3e;
}

.success-box {
    background: #f0fff4;
    border-left: 4px solid #38a169;
}

.cta-box {
    background: #f7fafc;
    border: 2px solid #3182ce;
    text-align: center;
}

.comparison-box {
    background: #fefcbf;
    border-left: 4px solid #d69e2e;
}

.info-box h3,
.warning-box h3,
.success-box h3,
.cta-box h3,
.comparison-box h3 {
    margin-bottom: 1rem;
    color: #1a365d;
}

/* Tables */
.budget-table,
.debt-table,
.cost-table,
.tax-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.budget-table th,
.debt-table th,
.cost-table th,
.tax-table th,
.budget-table td,
.debt-table td,
.cost-table td,
.tax-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.budget-table th,
.debt-table th,
.cost-table th,
.tax-table th {
    background: #f7fafc;
    color: #1a365d;
    font-weight: 600;
}

/* Article Tags */
.article-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.article-tags h3 {
    margin-bottom: 1rem;
    color: #1a365d;
}

.tag {
    display: inline-block;
    background: #e2e8f0;
    color: #2d4a67;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Related Articles */
.related-articles {
    background: #f7fafc;
    padding: 3rem 0;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a365d;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Mobile Hero */
    .hero-split {
        flex-direction: column;
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-left, .hero-right {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-left {
        text-align: center;
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .floating-cards {
        height: 300px;
        margin: 0 auto;
        max-width: 300px;
    }

    /* Mobile Services */
    .services-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .service-step:not(:last-child)::after {
        content: '\2193';
        right: 50%;
        top: 100%;
        transform: translateX(50%);
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    /* Mobile About & Results */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card {
        padding: 30px 20px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .card-header h2 {
        font-size: 1.8rem;
    }

    /* Mobile Social Proof */
    .proof-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonials-column {
        padding-right: 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Blog */
    .blog-intro {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .blog-masonry {
        grid-template-columns: 1fr;
    }

    .blog-card.large {
        grid-row: span 1;
    }

    /* Mobile Contact */
    .contact-split {
        flex-direction: column;
        min-height: auto;
    }

    .contact-promise, .contact-form-section {
        padding: 40px 20px;
    }

    .contact-promise h2 {
        font-size: 2rem;
    }

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

    .form-group.half {
        flex: none;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 15px;
    }

    .method-icon {
        font-size: 1.2rem;
        width: 40px;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }

    /* General Mobile */
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Other elements */
    .cookie-buttons {
        flex-direction: column;
    }
    
    .steps {
        gap: 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .budget-table,
    .debt-table,
    .cost-table,
    .tax-table,
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .budget-table th,
    .debt-table th,
    .cost-table th,
    .tax-table th,
    .cookie-table th,
    .budget-table td,
    .debt-table td,
    .cost-table td,
    .tax-table td,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Mobile Responsive - Small Screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .quick-stat strong {
        font-size: 1.5rem;
    }

    .services-intro h2 {
        font-size: 1.75rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .testimonials-header h2 {
        font-size: 1.75rem;
    }

    .testimonial-main p {
        font-size: 1rem;
    }

    .contact-promise h2 {
        font-size: 1.75rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .floating-cards {
        height: 250px;
    }

    .success-card, .service-preview {
        padding: 15px;
    }

    .success-card {
        width: 180px;
    }

    .service-preview {
        width: 200px;
    }

    .about-card {
        padding: 25px 15px;
    }

    .testimonial-main {
        padding: 20px;
    }

    .blog-column {
        padding: 20px;
    }

    .contact-promise, .contact-form-section {
        padding: 30px 15px;
    }

    .submit-button {
        padding: 16px 24px;
        font-size: 1rem;
    }

    .method-info strong {
        font-size: 1rem;
    }

    .method-info a {
        font-size: 1rem;
    }

    /* General */
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-split {
        padding: 80px 0 40px;
    }
    
    .thank-you,
    .legal-page,
    .blog-article {
        padding: 100px 0 60px;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
    }
}

/* Smooth scrolling and animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .blog-card,
    .testimonial-card {
        animation: fadeInUp 0.6s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #3182ce;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .cookie-modal,
    .related-articles {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .legal-page,
    .blog-article {
        padding: 0;
    }
}
