/* 
  Theme: Premium Dark Portfolio
  Color Palette: Deep grays, vibrant primary accent (neon blue/purple), glowing elements.
*/

:root {
    --bg-main: #0a0a0c;
    --bg-alt: #121216;
    --bg-card: rgba(255, 255, 255, 0.03);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    
    --accent-color: #00d2ff;
    --accent-glow: rgba(0, 210, 255, 0.5);
    --gradient-primary: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    --gradient-accent: linear-gradient(135deg, #ff007f 0%, #7928ca 100%);
    
    --border-color: rgba(255, 255, 255, 0.1);
    
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* Typography Enhancements */
span {
    color: var(--accent-color);
}

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

.section {
    padding: 100px 0;
}

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

/* Reusable Components */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.underline {
    height: 4px;
    width: 60px;
    background: var(--gradient-primary);
    margin: 0 auto 15px;
    border-radius: 2px;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #0a0a0c;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.greeting {
    font-family: var(--font-primary);
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.name {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

.role {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-weight: 400;
}

.bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px var(--accent-glow);
    animation: float 6s ease-in-out infinite;
}

.placeholder-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: var(--text-secondary);
}

.hero-character-img {
    width: 120%;
    height: auto;
    position: absolute;
    bottom: -20px;
    z-index: 10;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}


.floating-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border: 1px solid var(--border-color);
}

.badge-1 {
    top: 20px;
    left: 20px;
    color: #F24E1E; /* Figma color */
    animation: bounce 4s ease-in-out infinite alternate;
}

.badge-2 {
    bottom: 50px;
    right: 20px;
    color: var(--accent-color);
    animation: bounce 5s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes bounce {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-15px) scale(1.1); }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    font-size: 2rem;
    color: var(--text-secondary);
}

.scroll-down a:hover {
    color: var(--accent-color);
}

/* About Section */
.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--text-primary);
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-item p {
    margin: 0;
    font-size: 0.9rem;
}

.about-skills {
    flex: 1;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.about-skills h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tag {
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    border: 1px solid rgba(0, 210, 255, 0.2);
}

/* About Character Image */
.about-character-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    animation: character-float 5s ease-in-out infinite alternate;
}

@keyframes character-float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(2deg); }
}

/* Experience Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-glow);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.timeline-content {
    background: var(--bg-card);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--accent-glow);
}

.timeline-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.timeline-content h4 {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        left: 0 !important;
        text-align: left !important;
    }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
    }
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.skill-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--accent-glow);
}

.skill-card img, .skill-card .icon-placeholder {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.skill-card .icon-placeholder {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ff3366; /* InDesign-like color */
    background: rgba(255, 51, 102, 0.1);
    border-radius: 10px;
}

.skill-card h4 {
    font-size: 1rem;
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 600;
    color: #fff;
}

.bg-gradient-1 { background: linear-gradient(45deg, #1f4037, #99f2c8); }
.bg-gradient-2 { background: linear-gradient(45deg, #cb2d3e, #ef473a); }
.bg-gradient-3 { background: linear-gradient(45deg, #4b6cb7, #182848); }

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-btn {
    padding: 10px 25px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.project-card:hover .view-btn {
    transform: translateY(0);
}

.project-info {
    padding: 25px;
}

.category {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Blogs Section */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-main);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 210, 255, 0.2);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-featured-img {
    transform: scale(1.05);
}

.blog-info {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

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

.blog-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    font-family: var(--font-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: #fff;
}

.read-more i {
    transition: transform var(--transition-normal);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* 3D Glow Images */
.glow-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4), 0 0 60px rgba(0, 102, 255, 0.2);
    border: 1px solid rgba(0, 240, 255, 0.3);
    transition: var(--transition-normal);
}

.glow-img:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.6), 0 0 80px rgba(0, 102, 255, 0.4);
    transform: translateY(-5px);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 210, 255, 0.1);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #0a0a0c;
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.contact-form-container {
    flex: 1.2;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

input, textarea, select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 210, 255, 0.05);
}

select option {
    background: var(--bg-alt);
    color: var(--text-primary);
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    color: #00d2ff;
    display: block;
}

.form-status.error {
    color: #ff3366;
    display: block;
}

/* Footer */
footer {
    background: #050506;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-right { transform: translateX(50px); }
.fade-left { transform: translateX(-50px); }
.fade-up { transform: translateY(30px); }

.fade-right.active, .fade-left.active, .fade-up.active {
    transform: translate(0);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .name {
        font-size: 3.5rem;
    }
    
    .bio {
        margin: 0 auto 30px;
    }
    
    .about-content, .contact-content {
        flex-direction: column;
    }
    
    .image-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .placeholder-img {
        width: 300px;
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.nav-active {
        right: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle .line2 { opacity: 0; }
    .hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    
    .name { font-size: 2.8rem; }
    .role { font-size: 1.5rem; }
    
    .stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Blog Page Specific Styles */
.blog-post-page { padding-top: 120px; padding-bottom: 80px; }
.blog-post-container { display: flex; flex-wrap: wrap; gap: 40px; }
.blog-post-content { flex: 0 0 calc(70% - 20px); }
.blog-sidebar { flex: 0 0 calc(30% - 20px); position: sticky; top: 100px; align-self: flex-start; }
@media (max-width: 991px) { .blog-post-content, .blog-sidebar { flex: 0 0 100%; } .blog-sidebar { position: static; } }
.blog-post-title { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; font-weight: 700; }
.blog-post-body h2 { font-size: 1.8rem; margin: 30px 0 15px; color: var(--text-light); }
.blog-post-body h3 { font-size: 1.4rem; margin: 25px 0 10px; color: var(--text-light); }
.blog-post-body p { margin-bottom: 15px; line-height: 1.8; color: var(--text-gray); }
.blog-post-body ul { margin-bottom: 20px; padding-left: 20px; color: var(--text-gray); }
.blog-post-body li { margin-bottom: 10px; line-height: 1.6; }
.sidebar-widget { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 15px; padding: 30px; box-shadow: var(--shadow); }
.sidebar-widget h3 { color: var(--accent); margin-bottom: 20px; font-size: 1.5rem; }
.sidebar-widget p { color: var(--text-gray); margin-bottom: 20px; }
.sidebar-widget .contact-details { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
.sidebar-widget .contact-item { display: flex; align-items: center; gap: 10px; color: var(--text-light); }
.sidebar-widget .contact-item i { color: var(--accent); font-size: 1.2rem; }
.blog-cta-section { background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(112, 0, 255, 0.1) 100%); padding: 60px 0; border-top: 1px solid var(--glass-border); text-align: center; margin-top: 50px; }
.blog-cta-section h2 { color: var(--text-light); font-size: 2.5rem; margin-bottom: 20px; }
.blog-cta-section p { color: var(--text-gray); max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; line-height: 1.8; }
.blog-cta-section .cta-phone { display: block; margin-top: 20px; color: var(--accent); font-weight: 600; font-size: 1.2rem; text-decoration: none; transition: var(--transition); }
.blog-cta-section .cta-phone:hover { color: var(--accent-secondary); }
