:root {
    --deep-indigo: #1a1548;
    --electric-mint: #00ffa3;
    --soft-lilac: #c7b8ea;
    --dark-purple: #0f0d2e;
    --light-gray: #f5f5f7;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --gradient-1: linear-gradient(135deg, #1a1548 0%, #2d1b69 100%);
    --gradient-2: linear-gradient(135deg, #00ffa3 0%, #00d4ff 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.main-navigation {
    background: rgba(26, 21, 72, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--electric-mint);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-mint);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--electric-mint);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 163, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem;
}

.hero-title {
    font-size: 3.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--soft-lilac);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-cta {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--deep-indigo);
    box-shadow: 0 8px 20px rgba(0, 255, 163, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 255, 163, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--electric-mint);
    color: var(--electric-mint);
}

.btn-secondary:hover {
    background: var(--electric-mint);
    color: var(--deep-indigo);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: rgba(199, 184, 234, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    font-size: 2rem;
    color: var(--electric-mint);
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 15%; left: 10%; animation-delay: 0s; }
.card-2 { top: 25%; right: 15%; animation-delay: 1.5s; }
.card-3 { bottom: 20%; left: 15%; animation-delay: 3s; }
.card-4 { bottom: 30%; right: 10%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid,
.services-detailed,
.blog-section,
.pricing-section,
.about-story,
.values-section,
.team-section,
.contact-section {
    padding: 6rem 0;
}

.section-heading {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-indigo);
    font-weight: 800;
}

.section-subtext {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 21, 72, 0.08);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--electric-mint);
}

.feature-icon {
    font-size: 3rem;
    color: var(--electric-mint);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-indigo);
    font-weight: 700;
}

.feature-desc {
    color: #555;
    line-height: 1.8;
}

.showcase-section {
    background: var(--light-gray);
    padding: 6rem 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-title {
    font-size: 2.5rem;
    color: var(--deep-indigo);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.showcase-text {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.1rem;
}

.showcase-image img,
.img-responsive {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--deep-indigo);
    color: var(--deep-indigo);
}

.btn-outline:hover {
    background: var(--deep-indigo);
    color: var(--white);
}

.stats-banner {
    background: var(--gradient-1);
    padding: 4rem 0;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--electric-mint);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--soft-lilac);
    font-size: 1.1rem;
}

.cta-section {
    background: var(--gradient-1);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-text {
    color: var(--soft-lilac);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta {
    background: var(--electric-mint);
    color: var(--deep-indigo);
    padding: 1.2rem 3rem;
    box-shadow: 0 8px 25px rgba(0, 255, 163, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 163, 0.4);
}

.site-footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-heading {
    color: var(--electric-mint);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-text {
    color: var(--soft-lilac);
    line-height: 1.8;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--soft-lilac);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--electric-mint);
}

.footer-contact li {
    color: var(--soft-lilac);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--electric-mint);
    margin-top: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--soft-lilac);
}

.page-header {
    background: var(--gradient-1);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--soft-lilac);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.blog-category {
    background: rgba(0, 255, 163, 0.15);
    color: var(--deep-indigo);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--deep-indigo);
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--electric-mint);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 1rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.service-icon-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--deep-indigo);
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 2rem;
    color: var(--deep-indigo);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.8rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-features i {
    color: var(--electric-mint);
    font-size: 1.2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover,
.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--electric-mint);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--electric-mint);
    color: var(--deep-indigo);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.plan-name {
    font-size: 1.8rem;
    color: var(--deep-indigo);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--deep-indigo);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--deep-indigo);
}

.period {
    font-size: 1.2rem;
    color: #888;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.plan-features i {
    color: var(--electric-mint);
}

.plan-button {
    display: block;
    text-align: center;
    background: var(--deep-indigo);
    color: var(--white);
    padding: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: var(--electric-mint);
    color: var(--deep-indigo);
}

.process-section {
    background: var(--light-gray);
    padding: 6rem 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-indigo);
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    color: var(--deep-indigo);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-description {
    color: #555;
    line-height: 1.7;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-title {
    font-size: 2.3rem;
    color: var(--deep-indigo);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.story-text {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(26, 21, 72, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: var(--electric-mint);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    color: var(--deep-indigo);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-desc {
    color: #555;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-photo img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.member-name {
    font-size: 1.5rem;
    color: var(--deep-indigo);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    color: var(--electric-mint);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #555;
    line-height: 1.7;
}

.achievements-section {
    background: var(--light-gray);
    padding: 6rem 0;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.achievement-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.achievement-icon {
    font-size: 3rem;
    color: var(--electric-mint);
    margin-bottom: 1.5rem;
}

.achievement-title {
    font-size: 1.3rem;
    color: var(--deep-indigo);
    margin-bottom: 1rem;
    font-weight: 700;
}

.achievement-desc {
    color: #555;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-title {
    font-size: 2rem;
    color: var(--deep-indigo);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-intro {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--deep-indigo);
    font-size: 1.3rem;
}

.contact-text h4 {
    color: var(--deep-indigo);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-text p,
.contact-text a {
    color: #555;
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--electric-mint);
}

.business-info {
    background: rgba(26, 21, 72, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.business-info h4 {
    color: var(--deep-indigo);
    margin-bottom: 1rem;
    font-weight: 700;
}

.business-info p {
    color: #555;
    margin-bottom: 0.5rem;
}

.form-title {
    font-size: 2rem;
    color: var(--deep-indigo);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-indigo);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-mint);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    gap: 0.8rem;
    cursor: pointer;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-label a {
    color: var(--electric-mint);
    text-decoration: none;
}

.submit-btn {
    background: var(--deep-indigo);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.submit-btn:hover {
    background: var(--electric-mint);
    color: var(--deep-indigo);
    transform: translateY(-2px);
}

.map-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.modal-icon {
    font-size: 4rem;
    color: var(--electric-mint);
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 2rem;
    color: var(--deep-indigo);
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-text {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.modal-close {
    background: var(--deep-indigo);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--electric-mint);
    color: var(--deep-indigo);
}

.post-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.post-header {
    margin-bottom: 3rem;
}

.post-meta-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    color: #888;
}

.post-meta-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-main-title {
    font-size: 2.8rem;
    color: var(--deep-indigo);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 800;
}

.post-featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.post-featured-image img {
    width: 100%;
    display: block;
}

.content-wrapper {
    line-height: 1.9;
}

.intro-paragraph {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.content-wrapper h3 {
    font-size: 1.8rem;
    color: var(--deep-indigo);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    color: #555;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.post-tags {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.post-tags i {
    color: var(--electric-mint);
}

.tag {
    background: rgba(0, 255, 163, 0.15);
    color: var(--deep-indigo);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-text {
    color: #555;
    font-weight: 600;
}

.share-btn {
    width: 45px;
    height: 45px;
    background: var(--electric-mint);
    border: none;
    border-radius: 50%;
    color: var(--deep-indigo);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 163, 0.3);
}

.related-posts {
    background: var(--light-gray);
    padding: 4rem 0;
}

.related-title {
    font-size: 2rem;
    color: var(--deep-indigo);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h4 {
    padding: 1.5rem;
    color: var(--deep-indigo);
    font-weight: 700;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 21, 72, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1500;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-title {
    font-size: 1.3rem;
    color: var(--electric-mint);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cookie-desc {
    color: var(--soft-lilac);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-link {
    color: var(--electric-mint);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-accept {
    background: var(--electric-mint);
    color: var(--deep-indigo);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 163, 0.3);
}

.btn-decline {
    background: transparent;
    border: 2px solid var(--soft-lilac);
    color: var(--soft-lilac);
}

.btn-decline:hover {
    background: var(--soft-lilac);
    color: var(--deep-indigo);
}

.btn-customize {
    background: transparent;
    border: 2px solid var(--electric-mint);
    color: var(--electric-mint);
}

.btn-customize:hover {
    background: var(--electric-mint);
    color: var(--deep-indigo);
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(26, 21, 72, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .showcase-grid,
    .story-grid,
    .service-item,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .post-main-title {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
