/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #1f1f2e;
    overflow-x: hidden;
    background: #fff9fb;
}

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

/* COLORS */
:root {
    --primary-pink: #e83e8c;
    --secondary-pink: #f06292;
    --dark-pink: #c2185b;
    --soft-pink: #fce4ec;
    --primary-dark: #2c2b6e;
    --text-dark: #1f1f2e;
    --text-soft: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #fff9fb;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 30px rgba(232, 62, 140, 0.15);
    --shadow-lg: 0 20px 60px rgba(232, 62, 140, 0.2);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* HEADER */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-soft);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-pink);
}

.operating-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-soft);
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--soft-pink);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.operating-hours i {
    color: var(--primary-pink);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* HERO */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background:
        linear-gradient(135deg, rgba(232, 62, 140, 0.08), rgba(44, 43, 110, 0.05)),
        radial-gradient(circle at top right, var(--soft-pink), transparent 60%),
        var(--bg-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(232, 62, 140, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-3px);
}

/* SECTION SERVICES */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--soft-pink), transparent 70%);
    pointer-events: none;
    opacity: 0.6;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    padding: 0.4rem 1rem;
    background: var(--soft-pink);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(44, 43, 110, 0.06);
    border: 1px solid rgba(232, 62, 140, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 62, 140, 0.25);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(232, 62, 140, 0.25);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-5deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.service-description {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.9rem;
    color: var(--dark-pink);
}

.service-link i {
    transition: transform 0.3s ease;
}

/* SECTION BLOG / ARTIKEL */
.blog {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: '';
    position: absolute;
    top: 50px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, var(--soft-pink), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Blog Main */
.blog-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 43, 110, 0.06);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card.featured {
    grid-template-columns: 1fr;
}

.blog-card.featured .blog-image {
    height: 320px;
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(232, 62, 140, 0.3);
}

.blog-content {
    padding: 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-meta i {
    color: var(--primary-pink);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.7rem;
    line-height: 1.35;
    transition: color 0.3s ease;
    cursor: pointer;
}

.blog-card:hover .blog-title {
    color: var(--primary-pink);
}

.blog-card.featured .blog-title {
    font-size: 1.5rem;
}

.blog-excerpt {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: gap 0.3s ease;
    align-self: flex-start;
}

.blog-read-more:hover {
    gap: 0.9rem;
    color: var(--dark-pink);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 4px 20px rgba(44, 43, 110, 0.06);
    border: 1px solid rgba(232, 62, 140, 0.08);
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
}

/* Recent Posts */
.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts li a {
    display: flex;
    gap: 0.9rem;
    text-decoration: none;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.recent-posts li a:hover {
    transform: translateX(3px);
}

.recent-posts img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-posts h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
}

.recent-posts li a:hover h4 {
    color: var(--primary-pink);
}

.recent-posts span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.recent-posts span i {
    color: var(--primary-pink);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    transform: translateX(4px);
}

.category-list .count {
    background: var(--white);
    color: var(--primary-pink);
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.category-list li a:hover .count {
    background: var(--white);
    color: var(--primary-pink);
}

/* Widget CTA */
.widget-cta {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    text-align: center;
    border: none;
}

.widget-cta i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    opacity: 0.9;
}

.widget-cta h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.widget-cta p {
    font-size: 0.88rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.widget-cta .btn {
    background: var(--white);
    color: var(--primary-pink);
    padding: 10px 22px;
    font-size: 0.88rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.widget-cta .btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* SECTION ABOUT */
.about {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--soft-pink), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--soft-pink), var(--white));
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.about-image img {
    max-width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(232, 62, 140, 0.2));
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--white);
    padding: 1rem 1.3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-badge i {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-badge div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.about-badge strong {
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
}

.about-badge span {
    color: var(--text-soft);
    font-size: 0.8rem;
}

.about-content .section-subtitle {
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.2rem;
}

.about-description {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.about-features li i {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

/* SECTION CONTACT */
.contact {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid rgba(232, 62, 140, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(44, 43, 110, 0.05);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(232, 62, 140, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 18px rgba(232, 62, 140, 0.25);
}

.contact-card h3 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.contact-card p {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card p a {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card p a:hover {
    color: var(--dark-pink);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}

.contact-map iframe {
    display: block;
    width: 100%;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), #1a1940);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand img {
    height: 55px;
    background: var(--white);
    padding: 0.4rem 0.6rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 0.7rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--primary-pink);
    margin-top: 4px;
    min-width: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-text h2 {
        font-size: 0.95rem;
    }

    .logo-text p {
        font-size: 0.7rem;
    }

    .services {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .hero {
        padding: 110px 0 50px;
        min-height: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .about {
        padding: 70px 0;
    }

    .about-image {
        padding: 1.5rem;
        min-height: 250px;
    }

    .about-badge {
        right: 0;
        bottom: -15px;
        padding: 0.7rem 1rem;
    }

    .contact {
        padding: 70px 0;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .blog {
        padding: 70px 0;
    }

    .blog-card {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 220px;
    }

    .blog-card.featured .blog-image {
        height: 240px;
    }

    .blog-content {
        padding: 1.3rem;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-card.featured .blog-title {
        font-size: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.15rem;
    }
}
