#cookie-consent-banner .cookie-banner-content,
#cookie-consent-banner .cookie-banner-text p,
#cookie-consent-banner .cookie-banner-text h3 {
    font-size: 0.95rem;
}
.blog-card .blog-meta,
.blog-card .card-title,
.blog-card .card-text {
    color: #1a202c !important;
}
/* Hero Title Background */
.hero-title-bg {
        display: inline-flex;
        align-items: center;
        gap: 2rem;
        background: rgba(0,0,0,0.5);
        border-radius: 18px;
        padding: 2rem 3rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 6px 32px 0 rgba(0,0,0,0.18);
}

.hero-title-bg .hero-logo {
        max-width: 140px;
        height: auto;
        margin: 0;
        flex-shrink: 0;
}

.hero-title-bg h1 {
        text-align: left;
        margin: 0;
}

@media (max-width: 600px) {
    .hero-title-bg {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem 1.2rem 1rem;
    }
    .hero-title-bg h1 {
        text-align: center;
    }
}

/* CTA Button Styles (matches screenshot) */
.btn-cta {
        background: var(--primary-color);
        color: var(--white) !important;
        border: none;
        border-radius: 8px;
        font-size: 1.25rem;
        font-weight: 700;
        padding: 0.9rem 2.2rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.18);
        transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
        outline: none;
        cursor: pointer;
        display: inline-block;
        margin: 0 0.5rem 0 0;
        text-align: center;
        text-decoration: none !important;
}
.btn-cta:hover, .btn-cta:focus {
        background: var(--secondary-color);
        color: var(--white);
        box-shadow: 0 6px 24px rgba(0,0,0,0.22);
        transform: translateY(-2px) scale(1.03);
        text-decoration: none;
}
.btn-cta:active {
        background: var(--primary-color);
        color: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
        transform: scale(0.98);
}

/* Success variant for Get Started */
.btn-cta.btn-success {
        background: var(--success-color);
        color: var(--white) !important;
}
.btn-cta.btn-success:hover, .btn-cta.btn-success:focus {
        background: #059669;
        color: var(--white);
}
.btn-cta.btn-success:active {
        background: var(--success-color);
        color: var(--white);
}

/* Standalone success button */
.btn.btn-success {
        background: var(--success-color);
        color: var(--white) !important;
        padding: 0.875rem 2rem;
        border-radius: 6px;
        font-weight: 600;
        transition: all 0.3s;
}
.btn.btn-success:hover {
        background: #059669;
        transform: translateY(-2px);
}

@media (max-width: 900px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .hero-buttons .btn-cta {
        width: 100%;
        max-width: 320px;
        margin: 0 0 0.5rem 0;
        font-size: 1.1rem;
        padding: 0.9rem 0;
    }
}
/* ===== HOMEPAGE SECTION BACKGROUNDS ===== */
.section-bg-hero {
    background: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.92), rgba(99, 102, 241, 0.88)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .section-bg-hero {
        background-attachment: scroll;
    }
}
.section-bg-hero .container, .section-bg-hero p, .section-bg-hero .btn {
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.section-bg-hero h1 {
    text-shadow: 
        1px 1px 0 #1e293b,
        2px 2px 0 #1e293b,
        3px 3px 0 #0f172a,
        4px 4px 0 #0f172a,
        5px 5px 0 #0f172a,
        6px 6px 10px rgba(0,0,0,0.5);
}

/* Hero text highlight with stroke effect */
.hero-text-highlight {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.15),
        2px 2px 0 #0f172a,
        3px 3px 0 #0f172a,
        4px 4px 8px rgba(0,0,0,0.4);
}

/* Accent underline for key phrase */
.hero-accent-underline {
    position: relative;
    display: inline-block;
}
.hero-accent-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.1em;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #f97316, var(--primary-color));
    background-size: 200% 100%;
    border-radius: 2px;
    animation: underline-shimmer 3s ease-in-out infinite;
}
@keyframes underline-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle-line {
    display: block;
    font-size: 0.7em;
    font-weight: 400;
    opacity: 0.95;
    margin-top: 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* What We Do - Dark */
.section-bg-services {
    background: var(--bg-darker);
    color: var(--text-color);
    padding: 5rem 0;
}
.section-bg-services .section-title {
    color: var(--text-color);
}
.section-bg-services .section-subtitle {
    color: var(--dark-gray);
}
.section-bg-services .card {
    background: var(--bg-card);
    border: 1px solid var(--medium-gray);
}
.section-bg-services .card:hover {
    background: var(--bg-card-hover);
}

/* Who We Work With - Light */
.section-bg-who {
    background: #f9fafb;
    color: var(--text-dark);
    padding: 5rem 0;
}
.section-bg-who .section-title {
    color: var(--text-dark);
}
.section-bg-who .section-subtitle {
    color: #4b5563;
}
.section-bg-who .card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.section-bg-who .card:hover {
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.section-bg-who .card-text {
    color: #4b5563;
}
.section-bg-who .card-title {
    color: var(--text-dark);
}
.section-bg-who a.card-link {
    color: var(--text-dark) !important;
    text-decoration: none !important;
}
.section-bg-who a.card-link .card-title {
    color: var(--text-dark);
    text-decoration: none;
}
.section-bg-who a.card-link .card-text {
    color: #4b5563;
    text-decoration: none;
}
.section-bg-who .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}
.section-bg-who .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* Image Cards for Who We Work With */
.card-with-image {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}
.card-with-image .card-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 0.75rem 0.75rem 0 0;
}
.card-with-image .card-content {
    padding: 0.75rem 1rem 1rem;
}
.card-with-image .card-title {
    margin-bottom: 0.5rem;
}

/* Why Choose - Dark */
.section-bg-why {
    background: var(--bg-dark);
    color: var(--text-color);
    padding: 5rem 0;
}
.section-bg-why .section-title {
    color: var(--text-color);
}
.section-bg-why .section-subtitle {
    color: var(--dark-gray);
}
.section-bg-why .icon-box {
    background: var(--bg-card);
    border: 1px solid var(--medium-gray);
}
.section-bg-why .icon-box:hover {
    background: var(--bg-card-hover);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --secondary-color: #b91c1c;
    --accent-color: #ef4444;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-color: #f9fafb;
    --text-dark: #1f2937;
    --bg-dark: #111827;
    --bg-darker: #0f172a;
    --bg-card: #1f2937;
    --bg-card-hover: #374151;
    --light-gray: #1f2937;
    --medium-gray: #374151;
    --dark-gray: #9ca3af;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    --link-color: #3b82f6;
    --link-hover-color: #60a5fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--bg-dark);
}

/* ===== SECTION STYLING ===== */
.section {
    padding: 5rem 0;
}

.section-light {
    background: var(--bg-card);
}

.section-gray {
    background: var(--bg-dark);
}

.section-gradient {
    background: var(--gradient-primary);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 800;
    text-shadow: 
        1px 1px 0 #1e293b,
        2px 2px 0 #1e293b,
        3px 3px 0 #0f172a,
        4px 4px 0 #0f172a,
        5px 5px 10px rgba(0,0,0,0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CARD COMPONENTS ===== */
.card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
}

.card-featured {
    border-top: 4px solid var(--primary-color);
}

.card-accent {
    border-top: 4px solid var(--accent-color);
}

.card-warning {
    border-top: 4px solid var(--warning-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card-icon-inline {
    display: inline-block;
    font-size: 1.5em;
    vertical-align: middle;
    margin-right: 0.5em;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.card-featured .card-title {
    font-size: 1.15rem;
    font-weight: 600;
}

.card-title a,
.card-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.card-title a:hover {
    color: var(--primary-color);
}

/* Card as link styling */
a.card-link,
a.card-link:hover,
a.card-link:visited,
a.card-link:active {
    display: block;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

a.card-link * {
    text-decoration: none !important;
}

a.card-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(220, 38, 38, 0.2);
}

a.card-link .card-title,
a.card-link .card-text {
    color: inherit;
    text-decoration: none;
}

.card-text {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
}

.pricing-card.featured {
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--warning-color);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--warning-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.875rem;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-price {
    color: var(--warning-color);
}

.pricing-period {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    line-height: 2.2;
    color: var(--dark-gray);
}

.pricing-features li::before {
    content: "✓ ";
    color: var(--success-color);
    font-weight: bold;
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0 3rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 1;
}

.step-line {
    width: 3px;
    flex-grow: 1;
    background: var(--gradient-primary);
    min-height: 30px;
}

.process-step:last-child .step-line {
    display: none;
}

.step-content {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex-grow: 1;
    margin-bottom: 1rem;
    border: 1px solid var(--medium-gray);
}

.step-content h3 {
    margin: 0 0 0.75rem 0;
    color: var(--text-color);
    font-size: 1.25rem;
}

.step-content p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===== ICON BOXES ===== */
.icon-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
}

.icon-box-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.icon-box-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
}

.icon-box-content p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ===== STATS/NUMBERS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 2rem 0;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ===== CTA BOXES ===== */
.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #f9fafb;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(16,185,129,0.18), 0 2px 8px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem;
    margin: 3rem auto 4rem auto;
    text-align: center;
    max-width: 600px;
    border: 2px solid var(--success-color);
}
.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #f9fafb;
    letter-spacing: 0.01em;
}
.cta-text {
    font-size: 1.15rem;
    color: #d1fae5;
    margin-bottom: 2rem;
}

.cta-box-gradient {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
}

.cta-box-gradient .cta-text {
    color: rgba(255, 255, 255, 0.9);
}

.cta-box-dark {
    background: var(--bg-darker);
    border: 1px solid var(--medium-gray);
    color: var(--text-color);
}

.cta-box-dark .cta-title {
    color: var(--text-color);
}

.cta-box-dark .cta-text {
    color: var(--dark-gray);
}

.cta-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: var(--gradient-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0 3rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.promo-banner h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.promo-banner p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-promo {
    background: white;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-promo:hover {
    background: var(--text-color);
    transform: translateY(-2px);
}

/* Global link styles for body content only */
.content-section a:not(.btn),
.content-section a:not(.btn):visited {
    color: var(--link-color) !important;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s, background 0.2s;
}

.content-section a:not(.btn):hover {
    color: var(--link-hover-color) !important;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 4px;
}

/* Reset link color for navigation, footer, contact, etc. */
.nav-menu a,
.card-title a,
.card-link,
.contact-details a,
.contact-info a,
footer a,
.footer-links a {
    color: var(--text-color) !important;
    text-decoration: none;
    font-weight: 500;
    background: none;
    border-radius: 0;
    transition: color 0.2s;
}

.nav-menu a:hover,
.card-title a:hover,
.contact-details a:hover,
.contact-info a:hover,
footer a:hover,
.footer-links a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

.nav-menu a:hover {
    text-decoration: none;
}

.github-link svg {
    fill: var(--white);
    transition: fill 0.2s;
}
.github-link:hover svg {
    fill: var(--primary-color);
}

/* ===== UTILITY CLASSES ===== */
.text-muted {
    color: var(--dark-gray) !important;
}

.text-small {
    font-size: 0.9rem;
}

.text-italic {
    font-style: italic;
}

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

.pricing-description {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.card-meta {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* ===== TEAM CARDS ===== */
.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar span {
    font-size: 3rem;
    color: white;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* ===== BLOCKQUOTES ===== */
blockquote,
.testimonial-quote {
    font-style: italic;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.08));
    border-left: 3px solid rgba(99, 102, 241, 0.4);
    border-radius: var(--border-radius-sm);
    margin: 1.5rem 0;
    color: var(--dark-gray);
}

/* ===== FAQ CARDS ===== */
.faq-card {
    margin: 1.5rem 0;
}

.faq-question {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* ===== LAYOUT UTILITIES ===== */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.my-2 { margin-top: 2rem; margin-bottom: 2rem; }
.my-3 { margin-top: 3rem; margin-bottom: 3rem; }

.w-full { width: 100%; }
.btn-block { width: 100%; text-align: center; }

/* Stats in results boxes */
.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin: 0;
}

.stat-description {
    margin: 0;
}

/* CTA gradient already has white title */
.cta-box-gradient .cta-title {
    color: white;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: #f9fafb;
    color: #1f2937;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6b7280;
}

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

/* ===== TABLES ===== */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
}

thead {
    background: var(--gradient-primary);
    color: var(--white);
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--medium-gray);
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: var(--bg-card-hover);
}

/* ===== LIST STYLES ===== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--dark-gray);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* ===== BADGES ===== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-primary {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

/* ===== DIVIDERS ===== */
.divider {
    border: none;
    height: 1px;
    background: var(--medium-gray);
    margin: 3rem 0;
}

.divider-gradient {
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.1));
    border-left: 3px solid rgba(99, 102, 241, 0.5);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-sm);
    margin: 2rem 0;
    backdrop-filter: blur(4px);
}

.highlight-box-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(251, 191, 36, 0.1));
    border-left-color: rgba(245, 158, 11, 0.5);
}

.highlight-box-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(52, 211, 153, 0.1));
    border-left-color: rgba(16, 185, 129, 0.5);
}

.highlight-box-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.1));
    border-left-color: rgba(59, 130, 246, 0.5);
}

/* ===== CLIENT CARDS WITH IMAGES ===== */
.client-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--medium-gray);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client-card-image {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.client-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.client-card-icon {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 2rem;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.client-card-content {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.client-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.client-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

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

/* ===== CONTACT CARDS ===== */
.contact-card-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    color: #f9fafb;
    box-shadow: 0 8px 32px rgba(16,185,129,0.12), 0 2px 8px rgba(0,0,0,0.18);
    border: 2px solid var(--primary-color);
    max-width: 480px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem 1rem;
    background: rgba(30,41,59,0.85);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 1.5px solid var(--primary-color);
}

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

.contact-icon {
    font-size: 1.5rem;
}

.contact-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 1;
}

.contact-details p {
    margin: 0;
    font-size: 0.95rem;
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 400;
}
.contact-details a {
    margin: 0;
    font-size: 1.08rem;
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

/* ===== CONTACT LINK BOXES ===== */
.contact-link-box:hover {
    transform: translateX(4px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.guarantee-box h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.guarantee-box {
    background: rgba(30,41,59,0.85);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
    color: #d1fae5;
    border: 1.5px solid var(--success-color);
}
/* Sticky Contact Button */
.sticky-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-contact-btn {
    background: var(--success-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.sticky-contact-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.sticky-contact-btn::before {
    content: "💬";
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .sticky-contact {
        bottom: 1rem;
        right: 1rem;
    }
    .sticky-contact-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

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

/* Navigation */
.navbar {
    background: var(--bg-darker);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--medium-gray);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-dropdown-toggle.active {
    color: var(--primary-color);
}

.nav-menu a.active,
.nav-dropdown-toggle.active {
    font-weight: 600;
    position: relative;
}

.nav-menu > li > a.active::after,
.nav-dropdown-toggle.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

/* Dropdown Styles */
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

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

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    min-width: 200px;
    padding: 0.75rem 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--medium-gray);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-color);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-card-hover);
    color: var(--primary-color);
}

.nav-dropdown-menu a.active {
    background: rgba(220, 38, 38, 0.15);
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #64748b 0%, #0a192f 100%);
    color: #f9fafb;
    padding: 6rem 0 5rem;
    text-align: center;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.services-preview h2,
.why-choose h2,
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.center-button {
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.feature {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--medium-gray);
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.feature p {
    color: var(--dark-gray);
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
}
.section-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ===== PREMIUM SECTION HEADERS ===== */
.section-header-premium {
    margin-bottom: 3rem;
    text-align: center;
}
.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.section-title-premium {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 
        1px 1px 0 #1e293b,
        2px 2px 0 #1e293b,
        3px 3px 0 #0f172a,
        4px 4px 0 #0f172a,
        5px 5px 10px rgba(0,0,0,0.4);
}
.title-accent {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Dark variants for light sections */
.section-badge-dark {
    background: var(--text-dark);
    color: var(--white);
}
.section-title-dark {
    color: var(--text-dark);
    text-shadow: 
        1px 1px 0 #d1d5db,
        2px 2px 0 #d1d5db,
        3px 3px 0 #e5e7eb,
        4px 4px 0 #e5e7eb,
        5px 5px 10px rgba(0,0,0,0.1);
}
.section-bg-who .section-subtitle {
    color: #4b5563;
}

/* Section divider on light background */
.section-divider-light {
    background: #f9fafb;
}

/* ===== BLOG REEL ===== */
.blog-reel {
    padding: 5rem 0;
}

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

.blog-reel-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--medium-gray);
    text-decoration: none !important;
    display: block;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.blog-reel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.blog-reel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card-hover);
}

.blog-reel-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.blog-reel-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-reel-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
    margin: 0;
}

.blog-reel-card:hover .blog-reel-title {
    color: var(--text-color);
}

.blog-reel-excerpt {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.blog-reel-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.blog-reel-card:hover .blog-reel-link {
    text-decoration: none;
}

/* Blog reel image */
.blog-reel-image {
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    overflow: hidden;
    margin: -2rem -2rem 1.5rem -2rem;
}

.blog-reel-image .blog-svg {
    width: 100%;
    height: auto;
    display: block;
}

.blog-reel-image .blog-featured-image,
.blog-card-image .blog-featured-image,
.blog-post-hero .blog-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-reel-image .blog-featured-image {
    height: 180px;
}

.blog-card-image .blog-featured-image {
    height: 200px;
}

.blog-post-hero .blog-featured-image {
    height: 300px;
    border-radius: var(--border-radius);
}

/* ===== BLOG CARDS WITH IMAGES ===== */
.blog-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--medium-gray);
    text-decoration: none !important;
    display: block;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    overflow: hidden;
}

.blog-card-image .blog-svg {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card .blog-meta {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}


.blog-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    text-shadow: none;
}


.blog-card .card-text {
    font-size: 0.98rem;
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: none;
}

/* Contact Section Premium */
.contact-premium {
    background: var(--bg-darker);
    position: relative;
}
.contact-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.contact-premium .container {
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-dark);
    text-align: center;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* Footer */
footer {
    background: var(--bg-darker);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--medium-gray);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    line-height: 2.2;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    font-size: 0.875rem;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1e293b 100%);
    color: #f9fafb;
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header .section-header-premium {
    margin-bottom: 0;
}

.page-header .section-title-premium {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .section-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
}

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

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 20px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-dark);
}

.service-hero-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .service-hero-image img {
        height: 200px;
    }
}

.content-section h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin: 2.5rem 0 1.25rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--medium-gray);
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 2rem 0 1rem 0;
}

.content-section p {
    color: var(--dark-gray);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.content-section ul, 
.content-section ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section strong {
    color: var(--text-color);
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    text-decoration: underline;
}

.content-section hr {
    border: none;
    height: 2px;
    background: var(--gradient-primary);
    margin: 3rem 0;
    border-radius: 2px;
}

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

.service-list li {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.service-list h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-list p {
    color: var(--dark-gray);
}

/* Blog styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.blog-meta {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 20px;
}

.blog-post-hero {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.blog-post-hero .blog-svg {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.blog-post h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.blog-post h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.blog-post p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.blog-post ul, .blog-post ol {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.blog-post li {
    margin-bottom: 0.5rem;
}

.blog-post strong {
    color: var(--text-color);
}

.back-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

/* Portfolio styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.portfolio-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: var(--light-gray);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.related-posts .card {
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}

.related-posts .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Tools page */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 0;
}

.tool-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tool-card p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.tool-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.tool-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */

/* Hamburger Menu Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

/* Hamburger animation when open */
.nav-toggle.nav-open .hamburger {
    background: transparent;
}

.nav-toggle.nav-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.nav-open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Tablet and below */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
        border-left: 1px solid var(--medium-gray);
    }

    .nav-menu.nav-open {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
        margin-top: 1rem;
    }

    .nav-menu > li > a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    /* Mobile dropdown styles */
    .nav-dropdown-toggle {
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        padding: 0;
        background: var(--bg-card);
        border-radius: 0;
        border: none;
        transition: max-height 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown.dropdown-open .nav-dropdown-menu {
        visibility: visible;
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .nav-dropdown.dropdown-open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .nav-menu > li > a.active::after {
        display: none;
    }

    .nav-menu .cta-button {
        text-align: center;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .services-preview h2,
    .why-choose h2,
    .contact h2 {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-header {
        padding: 3rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 3rem 0;
    }

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

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

    .services-preview,
    .why-choose,
    .contact {
        padding: 3rem 0;
    }

    .services-grid,
    .features-grid,
    .blog-grid,
    .portfolio-grid,
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .feature,
    .tool-card {
        padding: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Footer responsive */
    footer .container > div:nth-child(2) {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    footer .container > div:last-child {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    footer .container > div:last-child > div {
        justify-content: center;
    }

    /* Blog post responsive */
    .blog-post {
        padding: 1.5rem;
    }

    .blog-post h1 {
        font-size: 1.75rem;
    }

    .blog-post h2 {
        font-size: 1.375rem;
    }

    .blog-post h3 {
        font-size: 1.125rem;
    }

    /* Contact section forms */
    .contact .container > div {
        gap: 1.5rem;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .nav-logo {
        height: 32px;
    }

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

    .services-preview h2,
    .why-choose h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .sticky-contact {
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .sticky-contact-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    /* Footer on small screens */
    footer .container > div:nth-child(2) {
        grid-template-columns: 1fr;
    }

    footer h4 {
        font-size: 1rem;
    }
}

/* ===== ADDITIONAL RESPONSIVE FIXES ===== */

/* Contact grid for start-project page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Promo banner mobile */
    .promo-banner {
        padding: 1.5rem;
    }
    
    .promo-banner h3 {
        font-size: 1.5rem;
    }
    
    .promo-banner p {
        font-size: 1rem;
    }
    
    /* Process timeline mobile */
    .process-step {
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    /* Tables mobile - horizontal scroll */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    /* Icon boxes mobile */
    .icon-box {
        padding: 1rem;
    }
    
    /* Team cards mobile */
    .team-avatar {
        width: 100px;
        height: 100px;
    }
    
    .team-avatar span {
        font-size: 2.5rem;
    }
    
    /* CTA boxes mobile */
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    /* Pricing cards mobile */
    .pricing-price {
        font-size: 2rem;
    }
    
    /* Highlight boxes mobile */
    .highlight-box {
        padding: 1rem;
    }
    
    /* Stats in results section */
    .highlight-box .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer grid mobile */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section ul {
        line-height: 2;
    }
    
    /* Icon boxes keep horizontal layout on small screens */
    .icon-box {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .icon-box-icon {
        margin-bottom: 0;
    }

    /* Badges wrap better */
    .badge {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

/* GitHub link color */
.github-link svg {
    fill: var(--link-color);
    transition: fill 0.2s;
}
.github-link:hover svg {
    fill: var(--link-hover-color);
}

.who-we-work-with-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 1.35rem;
    padding: 1.25rem 0;
    margin: 2.5rem 0 0 0;
    text-align: center;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
}
