/* ================================
   GLOBAL STYLES
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: url('hero-bg.png') center/cover fixed, #0d0d0d;
    color: #f0f0f0;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #f0f0f0;
}

ul {
    list-style: none;
}

/* ================================
   NAVBAR
================================= */
nav {
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 13, 13, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
}

.menu ul {
    display: flex;
    gap: 40px;
    font-size: 0.95rem;
}

.menu ul li a {
    transition: color 0.3s ease;
}

.menu ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.menu ul li a.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================
   HERO SECTION
================================= */
.hero {
    height: 100vh;
    width: 100%;
    padding: 180px 60px 0;
    background: url('hero-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero p {
    font-size: 1.4rem;
    margin-top: 25px;
    opacity: 0.8;
}

/* Second row of nav in hero */
.sub-nav {
    margin-top: 45px;
}

.sub-nav ul {
    display: flex;
    gap: 35px;
    font-size: 1rem;
}

.sub-nav ul li a {
    transition: color 0.3s ease;
}

.sub-nav ul li a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.back-btn {
    font-size: 1.5rem;
    margin-top: 40px;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.back-btn:hover {
    transform: translateX(-5px);
}

/* ================================
   LOADING SCREEN
================================= */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-screen img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.005);
    }
}

/* ================================
   MAIN CONTENT
================================= */
.main-content {
    padding: 120px 60px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ================================
   SERVICES GRID
================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    height: 100px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    opacity: 0.9;
}

.service-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ffffff;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    transition: gap 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.service-card:hover .learn-more {
    gap: 15px;
}

/* ================================
   PROCESS SECTION
================================= */
.process-section {
    margin-top: 100px;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.process-section > p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0d0d0d;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 20px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* ================================
   CTA SECTION
================================= */
.cta-section {
    margin-top: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #0d0d0d;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.5);
}

/* ================================
   ABOUT SECTIONS
================================= */
.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.team-member .role {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ================================
   PORTFOLIO GRID
================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #00d4ff;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.portfolio-category {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.7;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffffff;
}

/* ================================
   FILTER BUTTONS
================================= */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    color: #f0f0f0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* ================================
   BLOG POSTS
================================= */
.blog-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

.blog-post {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-post:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.blog-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 153, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

.blog-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.blog-date {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-category {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 20px;
}

.read-more {
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.blog-post:hover .read-more {
    gap: 15px;
}

/* ================================
   FEATURED POST
================================= */
.featured-post {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.featured-badge {
    display: inline-block;
    background: #ffffff;
    color: #0d0d0d;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.featured-post h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.featured-post p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

.featured-meta {
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
    opacity: 0.7;
}

/* ================================
   CONTACT SECTION
================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

/* CONTACT FORM */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: #f0f0f0;
    font-family: "Inter", Arial, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    color: #0d0d0d;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.5);
}

/* CONTACT INFO */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ffffff;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.info-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.info-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.info-card a {
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.info-card a:hover {
    opacity: 0.7;
}

/* SOCIAL LINKS */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* MAP SECTION */
.map-section {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 255, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #00d4ff;
}

/* ================================
   MOBILE RESPONSIVE
================================= */
@media (max-width: 1200px) {
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .main-content {
        padding: 100px 40px 40px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-post {
        padding: 40px 30px;
    }
    
    .featured-post h2 {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
        min-height: 70px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .menu ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        text-align: center;
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu ul li a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .menu ul.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
        padding: 8px;
    }
    
    .hero {
        padding: 120px 20px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .sub-nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .main-content {
        padding: 100px 20px 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        height: 80px;
        font-size: 3rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .featured-meta,
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .map-section {
        padding: 30px 20px;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .service-card,
    .process-step,
    .info-card {
        padding: 25px 15px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-icon {
        height: 70px;
        font-size: 2.5rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .cta-section {
        padding: 30px 15px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .featured-post {
        padding: 30px 20px;
    }
    
    .featured-post h2 {
        font-size: 1.8rem;
    }
}
