/* =========================================
   DMV Short Sale - Purple/Magenta Theme
   ========================================= */

:root {
    --ak-black: #212121;
    --ak-white: #efefef;
    --ak-pearl: #fff;
    --ak-purple: #f3e8ff;
    --ak-blue: #8B5CF6;
    --ak-pink: #EC4899;
    --ak-gold: #F59E0B;
    --ak-navy: #1F2937;
    --ak-transition: all .25s ease-in-out;
    --primary-color: #8B5CF6;
    --secondary-color: #F59E0B;
    --dark-color: #212121;
    --dark-blue: #1F2937;
    --light-color: #f1f6f7;
    --white-color: #ffffff;
}

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

html, body {
    background: var(--ak-white);
    color: var(--ak-black);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    margin: 0; padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a, button, input[type="submit"] { cursor: pointer; }
a { transition: var(--ak-transition); text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5 { font-weight: 900; }

/* =========================================
   Navbar
   ========================================= */
.modern-navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.modern-navbar.sticky {
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo a {
    text-decoration: none;
}

.logo-text-nav {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0; padding: 0;
}

.navbar-links li a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.navbar-links li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--ak-blue);
    transition: width 0.3s;
}

.navbar-links li a:hover::after,
.navbar-links li.active a::after {
    width: 100%;
}

.navbar-links li a:hover,
.navbar-links li.active a {
    color: #fff;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none; border: none; padding: 5px;
}

.navbar-toggle span {
    width: 28px; height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 768px) {
    .navbar-toggle { display: flex; }
    .navbar-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--ak-navy);
        transition: right 0.4s;
        padding: 80px 30px;
    }
    .navbar-menu.active { right: 0; }
    .navbar-links { flex-direction: column; gap: 15px; }
    .navbar-links li a { font-size: 1.1rem; }
}

/* =========================================
   Hero Section
   ========================================= */
.ak-hero {
    min-height: 100vh;
    height: 100vh;
    background-color: var(--ak-black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ak-video-wrap {
    position: absolute;
    width: 100%; height: 100%;
    overflow: hidden;
}

#ak-video-bg {
    position: absolute;
    width: 100%; height: 100%;
    min-width: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.ak-gradient-overlay {
    bottom: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(33,33,33,0) 0%, rgba(33,33,33,0.9) 70%);
    z-index: 1;
    pointer-events: none;
}

.ak-hero-title {
    font-size: 5vw;
    line-height: 1.1em;
    font-weight: 900;
    color: #fff;
    text-align: center;
}

.ak-hero-fallback {
    position: absolute;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1F2937 0%, #4C1D95 50%, #831843 100%);
}

@media (max-width: 768px) {
    .ak-hero-title { font-size: 8vw; }
    .ak-hero { min-height: 600px; height: 600px; }
}

/* =========================================
   Section Two - Benefits
   ========================================= */
.short-sale-hero {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    background: var(--ak-white);
}

.hero-title {
    color: var(--ak-black);
    text-align: center;
    padding: 80px 20px 60px;
    font-size: 2.8rem;
    font-weight: 900;
}

.content-section {
    background-color: var(--light-color);
    padding: 60px 0 80px;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--dark-color);
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 0 auto 50px;
    max-width: 1200px;
    padding: 0 20px;
}

.benefit-card {
    flex: 1 1 250px;
    max-width: 280px;
    background-color: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 5px; width: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: height 0.5s;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before { height: 8px; }

.benefit-icon-wrapper {
    display: flex;
    margin: 0 auto 20px;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(245, 158, 11, 0.1));
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(245, 158, 11, 0.2));
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.5s;
}

.benefit-card:hover .benefit-icon {
    color: var(--secondary-color);
    transform: rotateY(-180deg);
}

.benefit-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.benefit-card-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    transition: left 0.8s ease-in-out;
}

.benefit-card:hover .benefit-card-shine { left: 100%; }

.closing-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.highlighted-text {
    font-weight: 700;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    color: white;
}

/* =========================================
   About Me Section
   ========================================= */
.about-section {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f3e8ff 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-left { flex: 1; max-width: 600px; }
.about-right { flex: 1; max-width: 500px; display: flex; justify-content: center; }

.about-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-heading::after {
    content: '';
    position: absolute;
    width: 60%; height: 4px;
    bottom: -10px; left: 0;
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
    border-radius: 4px;
}

.about-subheading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8B5CF6;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
    text-align: justify;
    font-family: 'Nunito', sans-serif;
}

.social-icons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.social-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: #4a5568;
    font-size: 22px;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
}

.image-container {
    position: relative;
    width: 100%; max-width: 400px;
    height: 500px;
    overflow: hidden;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: borderChange 8s infinite alternate ease-in-out;
}

@keyframes borderChange {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.about-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .about-image { transform: scale(1.08); }

.image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(236, 72, 153, 0.9));
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay { transform: translateY(0); }

@media (max-width: 768px) {
    .about-container { flex-direction: column; text-align: center; }
    .about-left { max-width: 100%; }
    .about-heading { font-size: 2rem; }
    .about-heading::after { left: 50%; transform: translateX(-50%); }
    .social-icons-container { justify-content: center; }
    .image-container { max-width: 300px; height: 380px; }
}

/* =========================================
   Homeowners Section
   ========================================= */
.ak-homeowners {
    padding: 80px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #f3e8ff 100%);
}

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

.ak-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.ak-section-title h2 {
    font-size: 2.5rem;
    color: var(--ak-navy);
    margin-bottom: 15px;
}

.ak-section-title p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Nunito', sans-serif;
}

.ak-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ak-card-title {
    font-size: 1.5rem;
    color: var(--ak-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.ak-card h4.ak-card-title {
    font-size: 1.2rem;
    margin-top: 25px;
    color: var(--primary-color);
}

.ak-card-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.ak-checklist {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.ak-checklist li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-family: 'Nunito', sans-serif;
    color: #4a5568;
    line-height: 1.6;
}

.ak-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Comparison Table */
.ak-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ak-comparison-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--ak-pink));
    color: #fff;
    padding: 14px 20px;
    font-weight: 700;
    text-align: left;
}

.ak-comparison-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #e5e7eb;
    font-family: 'Nunito', sans-serif;
    color: #4a5568;
}

.ak-comparison-table tr:nth-child(even) td { background: #faf5ff; }
.ak-comparison-table tr:hover td { background: #f3e8ff; }

/* Timeline */
.ak-timeline {
    position: relative;
    padding: 20px 0;
}

.ak-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--ak-pink));
}

.ak-timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.ak-timeline-left { justify-content: flex-start; }
.ak-timeline-right { justify-content: flex-end; }

.ak-timeline-content {
    width: 45%;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-left: 4px solid var(--primary-color);
}

.ak-timeline-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.ak-timeline-content p {
    font-family: 'Nunito', sans-serif;
    color: #4a5568;
    line-height: 1.6;
}

.ak-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ak-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--ak-pink));
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 30px;
}

.ak-cta-title {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
}

.ak-cta-text {
    font-family: 'Nunito', sans-serif;
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.ak-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.ak-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .ak-timeline::before { left: 20px; }
    .ak-timeline-item { justify-content: flex-end !important; }
    .ak-timeline-content { width: calc(100% - 50px); margin-left: 40px; }
    .ak-two-column { grid-template-columns: 1fr; }
    .ak-card { padding: 25px; }
}

/* =========================================
   Approvals Section
   ========================================= */
.ak-approvals-section {
    padding: 80px 0;
    background: var(--ak-navy);
    color: #fff;
}

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

.ak-approvals-header {
    text-align: center;
    margin-bottom: 20px;
}

.ak-approvals-header h2 {
    font-size: 2.5rem;
    color: #fff;
}

.ak-approvals-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: rgba(255,255,255,0.8);
    font-family: 'Nunito', sans-serif;
    line-height: 1.7;
}

.ak-approvals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.ak-approval-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.ak-approval-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    border-color: var(--primary-color);
}

.ak-approval-image {
    display: block;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
    text-decoration: none;
}

.ak-approval-image-title {
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    font-size: 0.9rem;
}

.ak-approval-image-icon {
    position: absolute;
    right: 15px;
    color: rgba(255,255,255,0.6);
}

.ak-approval-content {
    padding: 20px;
}

.ak-approval-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.ak-approval-details {
    font-family: 'Nunito', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

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

.ak-approval-date {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.ak-approval-view {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.ak-approval-view:hover { color: var(--ak-pink); }

.ak-approval-view svg { width: 16px; height: 16px; }

.ak-privacy-notice {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    margin: 30px 0;
}

.ak-approvals-cta {
    text-align: center;
    padding: 40px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    margin-top: 30px;
}

.ak-approvals-cta-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.ak-approvals-cta-text {
    color: rgba(255,255,255,0.8);
    font-family: 'Nunito', sans-serif;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.ak-approvals-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--ak-pink));
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.ak-approvals-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .ak-approvals-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Blog Section (Homepage)
   ========================================= */
.blog-section {
    padding: 80px 0;
    background: var(--light-color);
}

.title-container {
    text-align: center;
    margin-bottom: 50px;
}

.title-top {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-main {
    font-size: 2.5rem;
    color: var(--ak-navy);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--ak-pink));
    margin: 0 auto 20px;
    border-radius: 4px;
}

.section-description {
    font-family: 'Nunito', sans-serif;
    color: #6B7280;
    font-size: 1.05rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image { transform: scale(1.1); }

.blog-category {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #9CA3AF;
    font-size: 14px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-title {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--ak-navy);
}

.blog-title a { color: inherit; text-decoration: none; }
.blog-title a:hover { color: var(--primary-color); }

.blog-excerpt {
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
}

.read-more-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.read-more-btn:hover { color: var(--ak-pink); }
.read-more-btn i { font-size: 12px; transition: transform 0.3s; }
.read-more-btn:hover i { transform: translateX(5px); }

.blog-view-all {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Contact Section
   ========================================= */
.ak-cs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 50%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.ak-cs-vectors { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; }

.ak-cs-vector {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.ak-cs-circle-1 {
    width: 300px; height: 300px;
    background: var(--primary-color);
    top: -100px; right: -50px;
}

.ak-cs-circle-2 {
    width: 200px; height: 200px;
    background: var(--ak-pink);
    bottom: -80px; left: 10%;
}

.ak-cs-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.ak-cs-header {
    text-align: center;
    margin-bottom: 40px;
}

.ak-cs-title {
    font-size: 2.5rem;
    color: var(--ak-navy);
    margin-bottom: 15px;
}

.ak-cs-subtitle {
    font-family: 'Nunito', sans-serif;
    color: #6B7280;
    line-height: 1.6;
}

.ak-cs-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
}

.ak-cs-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ak-cs-field.full-width { grid-column: 1 / -1; }

.ak-cs-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ak-navy);
    margin-bottom: 6px;
}

.ak-cs-input,
.ak-cs-select,
.ak-cs-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--ak-navy);
    transition: border-color 0.3s;
    background: #fff;
}

.ak-cs-input:focus,
.ak-cs-select:focus,
.ak-cs-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.ak-cs-textarea { min-height: 140px; resize: vertical; }

.ak-cs-submit-wrapper {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

.ak-cs-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--ak-pink));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.ak-cs-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.ak-cs-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-top: 20px;
}

.ak-cs-privacy a { color: var(--primary-color); }

@media (max-width: 768px) {
    .ak-cs-form { grid-template-columns: 1fr; }
    .ak-cs-form-wrapper { padding: 25px; }
}

/* =========================================
   Footer
   ========================================= */
.ak-ft-footer {
    background: var(--ak-navy);
    color: #fff;
    position: relative;
}

.ak-ft-wave {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.ak-ft-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
}

.shape-fill { fill: var(--ak-navy); }

.ak-ft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.ak-ft-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    padding: 60px 0;
}

.ak-ft-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--ak-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ak-ft-about {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.ak-ft-social {
    display: flex;
    gap: 12px;
}

.ak-ft-social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 16px;
}

.ak-ft-social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.ak-ft-links-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.ak-ft-link-list {
    list-style: none;
    padding: 0;
}

.ak-ft-link-item { margin-bottom: 10px; }

.ak-ft-link {
    color: rgba(255,255,255,0.7);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.ak-ft-link:hover { color: var(--primary-color); }

.ak-ft-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ak-ft-contact-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.ak-ft-contact-item a:hover { color: var(--primary-color); }

.ak-ft-contact-icon {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.ak-ft-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

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

.ak-ft-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}

.ak-ft-bottom-link {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    text-decoration: none;
}

.ak-ft-bottom-link:hover { color: var(--primary-color); }

@media (max-width: 768px) {
    .ak-ft-content { grid-template-columns: 1fr; gap: 30px; }
    .ak-ft-bottom .ak-ft-container { flex-direction: column; gap: 10px; text-align: center; }
}
