:root {
    /* Color Palette - Premium Modern Blue */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary: #0f172a;
    --accent: #fbbf24;
    --accent-dark: #d97706;
    --success: #10b981;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-700);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--slate-900);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--slate-500);
    font-size: 1.125rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--slate-900);
    box-shadow: 0 4px 14px 0 rgba(251, 191, 36, 0.39);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Navbar Redesign - Floating Pill Style */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 1rem 2rem;
}

.navbar.scrolled {
    top: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-xl);
    padding: 0.75rem 2rem;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.navbar:not(.scrolled) .logo {
    color: var(--white);
}

.navbar.scrolled .logo {
    color: var(--slate-900);
}

.logo span {
    color: var(--primary);
}

.logo img {
    height: 42px;
    width: 42px;
    background: var(--white);
    padding: 6px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links li a {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.navbar:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-links a {
    color: var(--slate-600);
}

.nav-links a:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary) !important;
}

.nav-links a.active {
    background: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--slate-900);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--slate-900);
    overflow: hidden;
    color: var(--white);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, transparent 0%, var(--slate-900) 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--slate-300);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Badges / Floating Elements */
.hero-floating {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    z-index: 1;
    display: block;
}

.hero-floating h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.floating-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.floating-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.floating-text p {
    color: var(--slate-400);
    font-size: 0.875rem;
}

/* Service Preview Grid */
.service-preview {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.service-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.preview-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.preview-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.card-img-top {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.preview-card:hover .card-img-top img {
    transform: scale(1.15) rotate(1deg);
}

.card-icon-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    z-index: 2;
    transition: var(--transition-base);
    border: 2px solid var(--white);
}

.preview-card:hover .card-icon-badge {
    transform: translateY(-5px) scale(1.05);
    background: var(--accent);
    color: var(--slate-900);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

.card-body {
    padding: 3rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.card-body p {
    color: var(--slate-500);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.card-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-features li i {
    color: var(--success);
}

.btn-text {
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.btn-text:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
    border-bottom-color: var(--primary);
}

/* Features Section */
.features {
    padding: 120px 0;
    background-color: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.features .section-title {
    color: var(--white);
}

.features .section-subtitle {
    color: var(--slate-400);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 4rem 2.5rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    font-size: 3.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    transition: var(--transition-base);
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.feature-item p {
    color: var(--slate-400);
    line-height: 1.7;
    font-size: 1rem;
}

/* Blog Featured Section */
.blog-featured {
    padding: 100px 0;
    background-color: var(--slate-50);
}

.blog-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.blog-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
}

.blog-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-img {
    height: 200px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-body h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-body p {
    color: var(--slate-500);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--slate-300);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--slate-50);
    position: relative;
    overflow: hidden;
}

.testimonials .section-title {
    color: var(--slate-900);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 3rem;
}

.t-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.t-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.t-card.large {
    grid-row: span 2;
    justify-content: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--slate-100) 100%);
}

.t-quote {
    font-size: 1.1rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.t-quote i {
    color: var(--primary);
    opacity: 0.2;
    font-size: 2rem;
    position: absolute;
    top: -1rem;
    left: -1rem;
    z-index: -1;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.t-avatar {
    width: 50px;
    height: 50px;
    background: var(--slate-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.25rem;
    border: 2px solid var(--primary-light);
}

.t-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.t-rating {
    display: flex;
    gap: 2px;
    color: var(--accent);
    font-size: 0.75rem;
}

@media (max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .t-card.large {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Redesign */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.contact-info h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-list {
    margin-top: 3rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Mobile Sticky Call Bar */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.5s ease-out, pulse 2s infinite;
}

.mobile-call-bar i {
    font-size: 1.25rem;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(37, 99, 235, 0.7);
    }

    100% {
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    }
}

@media (max-width: 768px) {
    .mobile-call-bar {
        display: flex;
    }
}

.info-list i {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-list span {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
}

.info-list a,
.info-list p {
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-details-box {
    padding: 2rem;
}

/* Footer Section Redesign */
footer {
    background-color: var(--slate-900);
    color: var(--white);
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 80px;
}

.footer-brand .logo {
    margin-bottom: 2rem;
    color: var(--white);
}

.footer-brand .logo img {
    background: var(--white);
    padding: 5px;
    border-radius: 50%;
}

.footer-brand p {
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--slate-400);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-200);
}

.footer-social {
    margin-top: 3rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--slate-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a:hover {
    color: var(--white);
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-floating {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        transition: var(--transition-base);
        box-shadow: var(--shadow-xl);
        z-index: 1001;
        display: flex !important;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 1002;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 0.75rem;
        width: 92%;
        padding: 0.75rem 1.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .navbar:not(.scrolled) .logo,
    .navbar:not(.scrolled) .hamburger {
        color: var(--slate-900);
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    footer {
        padding-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    /* Blog Carousel Mobile */
    .blog-carousel {
        padding: 10px 0;
        margin: 0;
        width: 100%;
        overflow: hidden;
    }

    .blog-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .blog-track {
        gap: 0 !important;
    }

    /* Contact Mobile */
    .contact-info {
        padding: 2.5rem 1.5rem;
    }

    .info-list a,
    .info-list p {
        font-size: 1.125rem;
    }
}

/* Page Headers */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--slate-400);
    font-size: 1.25rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Info Banner Section */
.info-banner {
    padding: 100px 0;
    background-color: var(--white);
}

.info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--slate-50);
    padding: 4rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
}

.info-image {
    position: relative;
}

.info-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.info-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent);
    z-index: -1;
    border-radius: var(--radius-md);
    opacity: 0.3;
}

.info-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.info-content p {
    color: var(--slate-600);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.info-list {
    display: grid;
    gap: 1.5rem;
}

.info-list-item {
    display: flex;
    gap: 1rem;
}

.info-list-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.info-list-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-list-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .info-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2.5rem;
    }

    .info-content h2 {
        font-size: 2rem;
    }
}

/* Blog Post Specifics */
.blog-post {
    padding: 15rem 0 100px;
    background-color: var(--white);
}

.blog-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--slate-500);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-header h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--slate-900);
}

.blog-featured-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-xl);
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--slate-700);
}

.blog-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    color: var(--slate-900);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.blog-content li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.25rem;
}

.cta-box {
    background: var(--slate-900);
    padding: 4rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-top: 5rem;
    color: var(--white);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--slate-400);
    margin-bottom: 2rem;
}