:root {
    --bg-primary: #0F172A; /* Deep slate blue */
    --bg-secondary: #1E293B; /* Slightly lighter slate */
    --bg-tertiary: #334155;
    --accent-blue: #3B82F6; /* Vibrant blue for accents */
    --accent-blue-hover: #60A5FA;
    --text-primary: #F8FAFC; /* Crisp white */
    --text-secondary: #94A3B8; /* Muted slate for secondary text */
    --font-main: 'Inter', sans-serif;
    --transition-slow: 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s ease;
    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-blue);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 200;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--accent-blue);
    font-size: 1.1rem;
}


.statement-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.statement-text {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 800px;
}

.section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-weight: 600;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.full-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-medium);
}

.logo-nav {
    display: flex;
    align-items: center;
    height: 45px;
}
.logo-nav img {
    height: 100%;
    width: auto;
}

.logo-footer {
    display: flex;
    align-items: center;
    height: 40px;
    margin-bottom: 1rem;
}
.logo-footer img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-medium);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}
.nav-links a:hover {
    color: var(--accent-blue);
}
.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px; /* Slightly more rounded */
    transition: all var(--transition-medium);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: #FFFFFF;
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
}

.btn-secondary:hover {
    background-color: var(--glass-border);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-minimal {
    color: var(--text-primary);
    border-bottom: 1px solid transparent;
    padding: 0.5rem 0;
}

.btn-minimal:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.hero-ctas, .cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons {
    justify-content: center;
}

/* Specific Sections */
.hero {
    padding-top: 100px;
}

/* Parallax Backgrounds */
.hero-bg, .trust-bg, .cta-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    z-index: 0; pointer-events: none;
}
.hero-slider .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slider .slide.active {
    opacity: 1;
}

.hero-progress-bar {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: rgba(0,0,0,0.1);
    z-index: 10;
}
.hero-progress-bar .progress-fill {
    height: 100%;
    width: 0%;
    background: var(--text-primary);
    transition: width 5s linear;
}
.hero-progress-bar.animate .progress-fill {
    width: 100%;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    gap: 12px;
    z-index: 20;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
}
.dot.active {
    background: var(--text-primary);
    width: 24px;
    border-radius: 4px;
}

.hero-content, .container {
    position: relative;
    z-index: 1;
}

/* Services Grid */
.services {
    padding: 6rem 0; /* Reduced from 10rem */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: rgba(0, 0, 0, 0.05); /* very thin borders via gap */
}

.service-card {
    background-color: var(--bg-secondary);
    padding: 3rem 2rem;
    transition: all var(--transition-medium);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    margin: 1px; /* To maintain grid separation visual if needed, but border radius prefers gap */
}

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

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.text-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}
.text-link:hover {
    color: var(--text-primary);
}

.service-card:hover {
    background-color: var(--bg-tertiary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Trust Section */
.trust-title {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 4rem;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    font-size: clamp(1.2rem, 2vw, 2rem);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

.trust-list li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* How It Works */
.how-it-works {
    padding: 6rem 0; /* Reduced from 10rem */
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: flex;
    align-items: baseline;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.process-step:first-child {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.step-number {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-right: 4rem;
    width: 2rem;
}

.process-step h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
}

/* Impact Section */
.impact {
    padding: 6rem 0; /* Reduced from 10rem */
}

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

.impact-item h4 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 300;
    line-height: 1.3;
}

.about {
    position: relative;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(244, 247, 250, 0.85), rgba(244, 247, 250, 0.85)), url('assets/about.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
}

.about-text, .statement-text {
    position: relative;
    z-index: 1;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* Final CTA */
.cta-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 3rem;
}

/* Animations (Initial States) */
.fade-in {
    opacity: 0;
    animation: fadeIn var(--transition-slow) forwards;
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp var(--transition-slow) forwards;
}

.animate-up-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-up-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- NEW UI ENHANCEMENTS --- */
.section-padding {
    padding: 6rem 0; /* Reduced from 10rem */
}
.border-top {
    border-top: 1px solid var(--glass-border);
}
.section-separator {
    position: relative;
}
.section-separator::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 1px;
    background: rgba(0,0,0,0.1);
    transition: width 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.section-separator.in-view::before {
    width: 100%;
}

.statement { position: relative; }
.statement-bg {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background-image: url('assets/statement.png');
    background-size: cover; background-position: center; opacity: 0.15; z-index:0;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem; /* Increased gap */
}
.trust-card {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-medium);
}
.trust-card:hover { 
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}
.trust-icon, .service-icon { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--accent-blue); display: block; }
.trust-card h4 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-primary); }
.trust-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Client Logos */
.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    opacity: 0.5;
}
.client-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-text {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-style: italic;
}
.testimonial-author strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
}
.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Process Timeline */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.process-timeline {
    position: relative;
}
.process-step {
    display: flex;
    align-items: flex-start;
    padding: 2rem 0;
    position: relative;
}
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 5rem;
    bottom: -1rem;
    width: 2px;
    background: rgba(0,0,0,0.05);
}
.step-marker {
    width: 4rem;
    height: 4rem;
    background: var(--accent-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-right: 3rem;
    flex-shrink: 0;
    z-index: 1;
}
.step-content h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.step-content p { color: var(--text-secondary); font-size: 1.1rem; }

/* Impact Stats */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}
.impact-stat {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}
.stat-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    line-height: 1;
}

/* Contact CTA Layout */
.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.cta-info .cta-title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; text-align: left; }
.cta-info .cta-subtitle { color: var(--text-secondary); font-size: 1.2rem; margin-bottom: 2rem; }
.cta-contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link { color: var(--text-primary); text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: color 0.3s;}
.contact-link:hover { color: var(--accent-blue); }

.cta-form-wrapper {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-form label span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.support-notes {
    display: grid;
    gap: 1rem;
}
.support-notes div {
    padding: 1.25rem 0;
    border-top: 1px solid var(--glass-border);
}
.support-notes strong {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: var(--text-primary);
}
.support-notes span {
    color: var(--text-secondary);
}

/* Service Details */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.service-detail-card {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-medium);
}
.service-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.service-detail-card h3 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
.service-detail-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}
.service-detail-card ul {
    list-style: none;
    display: grid;
    gap: 0.8rem;
}
.service-detail-card li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-primary);
}
.service-detail-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-blue);
}

/* SEO Landing Pages */
.seo-content {
    padding: 8rem 0;
}
.seo-layout {
    display: block;
    max-width: 860px;
    margin: 0 auto;
}
.seo-copy {
    max-width: 100%;
}
.seo-copy h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    margin: 3rem 0 1.25rem;
}
.seo-copy h2:first-child {
    margin-top: 0;
}
.seo-copy h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 0 0.75rem;
}
.seo-copy p {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.seo-copy ul {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
    list-style: none;
}
.seo-copy li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text-primary);
}
.seo-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 7px;
    height: 7px;
    background: var(--accent-blue);
    border-radius: 50%;
}
.seo-sidebar {
    position: sticky;
    top: 120px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
}
.seo-sidebar h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.seo-sidebar a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.seo-sidebar a:hover {
    color: var(--accent-blue);
}
.keyword-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}
.keyword-links a {
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    background: var(--bg-secondary);
    transition: all var(--transition-fast);
}
.keyword-links a:hover {
    color: var(--text-primary);
    background: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* Global Footer */
.footer {
    background: #0F172A;
    color: #fff;
    padding: 6rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { color: #9CA3AF; max-width: 300px; }
.footer-links h4, .footer-legal h4 { margin-bottom: 1.5rem; font-size: 1.1rem; font-weight: 600; }
.footer-links a, .footer-legal a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}
.footer-links a:hover, .footer-legal a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}
.floating-chat i {
    font-size: 1.5rem;
}
.floating-chat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    color: #fff;
}


/* Custom Cursor */
.custom-cursor {
    position: fixed; top: 0; left: 0; width: 16px; height: 16px;
    background-color: rgba(2, 101, 220, 0.8);
    border-radius: 50%; pointer-events: none; z-index: 99998;
    transform: translate(-50%, -50%); transition: transform 0.1s ease-out, width 0.3s, height 0.3s, background-color 0.3s;
}
.custom-cursor.hover {
    width: 40px; height: 40px; background-color: rgba(2, 101, 220, 0.2);
    border: 1px solid var(--accent-blue);
}
@media (pointer: fine) {
    body { cursor: none; }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
    .custom-cursor {
        display: none;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .cta-layout, .process-layout { grid-template-columns: 1fr; gap: 2rem; }
    .seo-layout { grid-template-columns: 1fr; }
    .seo-sidebar { position: static; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2rem !important; }
}
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 99;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease-in-out;
    }
    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        font-size: 1.8rem;
        font-weight: 300;
        color: var(--text-primary) !important;
        text-decoration: none;
        letter-spacing: -0.02em;
        transition: color var(--transition-medium);
    }
    .nav-links a:hover {
        color: var(--accent-blue) !important;
    }
    .nav-links .btn-minimal {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
        margin-top: 1rem;
        background: var(--accent-blue) !important;
        border-color: var(--accent-blue) !important;
        color: #fff !important;
        border-radius: 8px;
    }
    .services-grid { grid-template-columns: 1fr; }
    .process-step {
        flex-direction: column;
        padding: 2rem 0;
    }
    .step-marker {
        margin-bottom: 1rem;
    }
    .process-step:not(:last-child)::after { display: none; }
    .hero-ctas {
        flex-direction: column;
    }
    .logos-grid {
        justify-content: center;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .trust-card {
        padding: 2rem !important;
    }
    .service-detail-card,
    .cta-form-wrapper {
        padding: 2rem;
    }
    .deep-dive-image {
        min-height: 250px !important;
    }
}

/* FAQ Accordions */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all var(--transition-medium);
}
.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
}
.faq-item summary {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--transition-medium);
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item p {
    padding: 0 2rem 2rem 2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.blog-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-medium);
}
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}
.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.blog-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 400;
}
.blog-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.blog-meta {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    gap: 1rem;
}

/* Single Blog Page */
.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}
.blog-post-header {
    text-align: center;
    padding: 12rem 0 4rem 0;
}
.blog-post-meta {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.blog-post-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.blog-post-body p {
    margin-bottom: 2rem;
}
.blog-post-body h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 3rem 0 1.5rem 0;
    font-weight: 300;
}
.blog-post-body h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    font-weight: 400;
}
.blog-post-body ol, .blog-post-body ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}
.blog-post-body li {
    margin-bottom: 0.5rem;
}
.blog-post-body blockquote {
    border-left: 3px solid var(--accent-blue);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* Blog gradient placeholders */
.blog-card-header {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
}
.bg-gradient-blue { background: linear-gradient(135deg, #0265DC 0%, #0c1a30 100%); }
.bg-gradient-slate { background: linear-gradient(135deg, #475569 0%, #0F172A 100%); }
.bg-gradient-dark { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); }

/* Page Banner System */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    background-color: var(--bg-secondary);
}
.page-hero-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Mobile Overlay Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 101;
    transition: color var(--transition-medium);
}
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}


/* Floating chat adjustments for mobile */
@media (max-width: 768px) {
    .floating-chat {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* E-E-A-T Styling additions (Credentials & Team) */
.credentials-section {
    background: var(--bg-primary);
    padding: 5rem 0;
}
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.credential-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all var(--transition-medium);
}
.credential-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.credential-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}
.credential-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.credential-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.team-card {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.team-image-wrapper {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: var(--bg-secondary);
}
.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}
.team-card:hover .team-image {
    transform: scale(1.05);
}
.team-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}
.team-role {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.team-bio {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Services Bottom CTA block */
.services-cta-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}
.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.services-cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.services-cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.services-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-item {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: left;
    transition: all var(--transition-medium);
}
.testimonial-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.testimonial-item-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}
.testimonial-item-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}
.testimonial-item-author span {
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 500;
}

/* Redesign Additions */

/* Outlined Navigation CTA */
.btn-navbar-cta {
    border: 1px solid var(--text-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary) !important;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
}
.btn-navbar-cta:hover {
    background: var(--text-primary);
    color: var(--bg-primary) !important;
    border-color: var(--text-primary);
}

/* Service Cards Icon Sizes */
.service-icon {
    font-size: 2.2rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    display: block;
}

/* Hero Grid Layout */
.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.hero-left-column {
    display: flex;
    flex-direction: column;
}
.hero-left-column .hero-title {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.15;
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.hero-left-column .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}
.hero-microcopy-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.microcopy-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}
.microcopy-item i {
    color: var(--accent-blue);
    font-size: 1.1rem;
}
.microcopy-item i.ph-whatsapp-logo {
    color: #25D366; /* WhatsApp green */
}

/* Stats Card */
.stats-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.stats-card-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.stat-box {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
}
.live-feed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}
.feed-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}
.feed-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.feed-status-dot.success {
    background-color: #10B981; /* Green */
    box-shadow: 0 0 8px #10B981;
}
.feed-status-dot.info {
    background-color: #3B82F6; /* Blue */
    box-shadow: 0 0 8px #3B82F6;
}
.feed-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 990px) {
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 2rem;
    }
    .hero-left-column {
        align-items: center;
    }
    .hero-badge {
        align-self: center;
    }
    .hero-microcopy-row {
        justify-content: center;
    }
    .stats-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
        text-align: left;
    }
}

