/* ============================================
   AllShores - Shared Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --navy: #3d4f5c;
    --dark-navy: #2c3840;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --accent-blue: #4a90e2;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: var(--white);
    padding: 1rem 3rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { display: flex; align-items: center; gap: 0rem; text-decoration: none; }
.logo img { height: 45px !important; max-height: 45px !important; width: auto !important; max-width: 200px !important; object-fit: contain !important; }

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav-link.home-btn {
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
}

.nav-link.home-btn:hover,
.nav-link.home-btn.active {
    background: var(--dark-navy);
    color: var(--white);
}

/* ============================================
   Hamburger Menu
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   Page Header (used on subpages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    text-align: center;
}

.page-header h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-header p { font-size: 1.15rem; max-width: 700px; margin: 0 auto; opacity: 0.95; }

.breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* ============================================
   Blog Article Template
   ============================================ */
.blog-article-template {
    background: #ececec;
}

.blog-article-template .article-header {
    background: #3f5160;
    color: var(--white);
    padding: 3.8rem 3rem 2.8rem;
}

.blog-article-template .article-header-content {
    max-width: 1120px;
    margin: 0 auto;
}

.blog-article-template .breadcrumb {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
}

.blog-article-template .breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
}

.blog-article-template .article-category {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #f3f7fa;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.35rem;
}

.blog-article-template .article-header h1 {
    font-size: clamp(2rem, 5vw, 3.55rem);
    line-height: 1.15;
    color: #f5f7f9;
    margin-bottom: 1.1rem;
}

.blog-article-template .article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.05rem;
}

.blog-article-template .article-content {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3rem 3rem 5rem;
}

.blog-article-template .back-link {
    display: inline-block;
    text-decoration: none;
    color: #3f5160;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.blog-article-template .back-link:hover {
    text-decoration: underline;
}

.blog-article-template .article-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #2f3439;
    margin-bottom: 1.45rem;
    max-width: 980px;
}

.blog-article-template .article-content h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.26;
    color: #3c4f60;
    margin: 2.7rem 0 1.15rem;
    max-width: 980px;
}

.blog-article-template .article-content h3 {
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    line-height: 1.32;
    color: #2f3439;
    margin: 2.2rem 0 0.9rem;
    max-width: 980px;
}

/* ============================================
   Section Containers
   ============================================ */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   Content Sections
   ============================================ */
.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.service-page .intro-text {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 3.2rem;
    font-size: 1.1rem;
    line-height: 1.75;
    color: #646a70;
}

.service-page .content-section h2 {
    font-size: 2.95rem;
    line-height: 1.2;
    margin: 3rem 0 1.3rem;
    color: #33383d;
}

.service-page .content-section p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #3e4349;
    margin-bottom: 1.6rem;
}

.service-page .content-section ul {
    margin: 0 0 2rem 1.6rem;
}

.service-page .content-section li {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #3e4349;
    margin-bottom: 0.65rem;
}

.service-page .highlight-box {
    background: #eef1f4;
    border-left: 5px solid #3d4f5c;
    border-radius: 6px;
    padding: 2rem 2rem 1.8rem;
    margin: 2.8rem 0 3.6rem;
}

.service-page .highlight-box h3 {
    margin: 0 0 0.9rem;
    font-size: 2rem;
    color: #3d4f5c;
}

.service-page .process-steps { margin-top: 2.6rem; }

.about-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.about-section h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.about-section p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; color: var(--text-dark); }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 3rem;
    text-align: center;
}

.cta-section h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }

.cta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ============================================
   Read More / Buttons
   ============================================ */
.read-more-btn {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.read-more-btn:hover { background: var(--dark-navy); }

.read-more {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover { background: var(--dark-navy); }

/* ============================================
   Values Grid
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.value-card { padding: 2rem; background: var(--light-gray); border-radius: 8px; }
.value-card .value-icon { font-size: 3rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--navy); }
.value-card p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0; }

/* ============================================
   Team Section
   ============================================ */
.team-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 3rem;
    background: var(--light-gray);
}

.team-section h2 { font-size: 2.2rem; text-align: center; margin-bottom: 3rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid var(--light-gray);
}

.team-info h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--navy); }
.team-role { color: var(--text-light); font-size: 1rem; margin-bottom: 1rem; font-weight: 600; }
.team-bio { color: var(--text-dark); font-size: 0.95rem; line-height: 1.7; }

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.contact-info p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; color: var(--text-light); }
.contact-details { margin-top: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.contact-icon { font-size: 1.5rem; color: var(--navy); width: 40px; }
.contact-text h3 { font-size: 1.1rem; margin-bottom: 0.3rem; color: var(--text-dark); }
.contact-text p { color: var(--text-light); margin: 0; }
.contact-text a { color: var(--navy); text-decoration: none; font-weight: 600; }
.contact-text a:hover { text-decoration: underline; }

.contact-form { background: var(--light-gray); padding: 3rem; border-radius: 8px; }
.contact-form h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.9rem; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; font-family: inherit; }
.form-group textarea { min-height: 150px; resize: vertical; }
.submit-btn { background: var(--navy); color: var(--white); padding: 1rem 2.5rem; border: none; border-radius: 4px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; width: 100%; }
.submit-btn:hover { background: var(--dark-navy); }
.hp-field { position: absolute !important; left: -9999px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { border-radius: 6px; padding: 0.85rem 1rem; margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.5; }
.form-status.success { background: #e8f6ed; border: 1px solid #84c89a; color: #1f5d34; }
.form-status.error { background: #fdeeee; border: 1px solid #e8a4a4; color: #7f1d1d; }

.services-help { background: var(--white); padding: 3rem; max-width: 1200px; margin: 0 auto 4rem; text-align: center; border-top: 1px solid #e0e0e0; }
.services-help h2 { font-size: 2rem; margin-bottom: 1rem; }
.services-help p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 2rem; }
.service-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.service-link { display: inline-block; padding: 1rem 2rem; background: var(--light-gray); border-radius: 4px; text-decoration: none; color: var(--navy); font-weight: 600; transition: all 0.3s ease; }
.service-link:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ============================================
   Blog Page
   ============================================ */
.blog-section { max-width: 1200px; margin: 0 auto; padding: 4rem 3rem; }

.featured-post {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-image { background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%); min-height: 400px; background-size: cover; background-position: center; }
.featured-content { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.post-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.post-category { color: var(--navy); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; margin-bottom: 1rem; }
.featured-content h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--text-dark); }
.featured-content p { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }

.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.post-card { background: var(--white); border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; transition: all 0.3s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.post-image { width: 100%; height: 220px; background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%); background-size: cover; background-position: center; }
.post-content { padding: 2rem; }
.post-content h3 { font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--text-dark); }
.post-content p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.post-link { color: var(--navy); font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.post-link:hover { text-decoration: underline; }

/* ============================================
   Newsletter
   ============================================ */
.newsletter-section {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 3rem;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-container h2 { font-size: 2rem; margin-bottom: 1rem; }
.newsletter-container p { font-size: 1.05rem; margin-bottom: 2rem; opacity: 0.9; }

.newsletter-cta { background: var(--light-gray); padding: 4rem 3rem; text-align: center; margin-top: 4rem; border-radius: 8px; }
.newsletter-cta h2 { font-size: 2rem; margin-bottom: 1rem; }
.newsletter-cta p { font-size: 1.05rem; color: var(--text-light); margin-bottom: 2rem; }

.newsletter-form { display: flex; gap: 1rem; max-width: 600px; margin: 0 auto; }
.newsletter-input { flex: 1; padding: 1rem 1.5rem; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
.newsletter-input:not([style]) { border: none; } /* For newsletter in navy section */
.newsletter-btn { background: var(--white); color: var(--navy); padding: 1rem 2.5rem; border: none; border-radius: 4px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: transform 0.3s ease; }
.newsletter-btn:hover { transform: translateY(-2px); }

/* ============================================
   Case Studies
   ============================================ */
.cases-section { max-width: 1400px; margin: 0 auto; padding: 4rem 3rem; }
.filter-buttons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { background: var(--white); border: 2px solid var(--navy); color: var(--navy); padding: 0.7rem 1.8rem; border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); }
.cases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2.5rem; }
.case-card { background: var(--white); border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; transition: all 0.3s ease; }
.case-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.case-image { width: 100%; height: 60px; background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%); }
.case-content { padding: 2rem; }
.case-category { color: var(--navy); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.8rem; }
.case-content h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 1rem; }
.case-content p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.case-stats { display: flex; gap: 1.5rem; margin: 1.5rem 0; padding-top: 1.5rem; border-top: 1px solid #e0e0e0; }
.stat { flex: 1; }
.stat-label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-light); letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.stat-value { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.case-link { display: inline-block; color: var(--navy); font-weight: 600; font-size: 0.9rem; text-decoration: none; margin-top: 1rem; }
.case-link:hover { text-decoration: underline; }

/* ============================================
   Service Cards (Homepage)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image { width: 100%; height: 220px; object-fit: cover; }
.service-content { padding: 2rem; }
.service-content h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 1rem; }
.service-content p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* ============================================
   Service Detail Pages
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-page .feature-item {
    background: var(--white);
    border: 1px solid #dce2e8;
    border-radius: 8px;
    padding: 1.8rem;
}

.service-page .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.service-page .feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--navy);
}

.service-page .feature-item p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-page .step-content h4 {
    font-size: 1.95rem;
    line-height: 1.25;
    margin-bottom: 0.7rem;
    color: #353a3f;
}

.service-page .step-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #5a6168;
    margin-bottom: 0;
}

.service-page {
    background: #f5f6f7;
}

.service-page .page-header {
    background: linear-gradient(135deg, #344858 0%, #2d3d4b 100%);
    padding: 2.6rem 2rem 3.2rem;
}

.service-page .page-header h1 {
    font-size: 4rem;
    margin-bottom: 0;
}

.service-page .content-section {
    max-width: 1080px;
    padding: 3.6rem 2rem 5rem;
}

.service-page .content-section h2:first-of-type {
    margin-top: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 3rem 3rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
    display: block;
}

.footer-section a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Responsive - Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .navbar { padding: 1rem 2rem; }
    .nav-menu { gap: 1.5rem; }
    .nav-link { font-size: 0.9rem; }
    .content-section, .about-section, .blog-section { padding: 3rem 2rem; }
    .service-page .page-header h1 { font-size: 3.1rem; }
    .service-page .content-section { padding: 3rem 1.8rem 4rem; }
    .service-page .content-section h2 { font-size: 2.35rem; }
    .service-page .intro-text { font-size: 1.05rem; margin-bottom: 2.6rem; }
    .blog-article-template .article-header { padding: 3.2rem 2rem 2.4rem; }
    .blog-article-template .article-content { padding: 2.5rem 2rem 4rem; }
}

/* ============================================
   Responsive - Mobile (768px)
   ============================================ */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 0;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-menu.active { left: 0; }
    .nav-menu li { width: 100%; padding: 0.8rem 0; }
    .nav-link { display: block; width: 100%; padding: 0.8rem 2rem; }
    .nav-link.home-btn { margin: 0.5rem 2rem; width: calc(100% - 4rem); }

    .navbar { padding: 1rem 1.5rem; }
    .logo img { height: 40px !important; max-height: 40px !important; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-header h2 { font-size: 2rem; }
    .services-grid, .value-grid { grid-template-columns: 1fr; }
    .newsletter-btn { width: 100%; }
    .page-header { padding: 3rem 1.5rem; }
    .page-header h1 { font-size: 2rem; }
    .page-header p { font-size: 1rem; }
    .content-section, .about-section, .blog-section { padding: 3rem 1.5rem; }
    .content-section h2 { font-size: 1.6rem; }
    .content-section p { font-size: 1rem; }
    .service-page .content-section li { font-size: 1rem; }
    .feature-grid, .values-grid, .posts-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .team-member { flex-direction: column; align-items: center; text-align: center; }
    .contact-section { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
    .contact-form { padding: 2rem 1.5rem; }
    .footer { padding: 2rem 1.5rem 1rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .featured-post { grid-template-columns: 1fr; }
    .newsletter-form, .service-links { flex-direction: column; }
    .step { flex-direction: column; gap: 1rem; }
    .step-number { width: 50px; height: 50px; font-size: 1.5rem; }
    .service-page .step-content h4 { font-size: 1.35rem; }
    .service-page .step-content p { font-size: 1rem; }
    .cases-grid { grid-template-columns: 1fr; }
    .service-page .page-header { padding: 2rem 1.2rem 2.4rem; }
    .service-page .page-header h1 { font-size: 2.35rem; }
    .service-page .breadcrumb { font-size: 0.82rem; }
    .service-page .intro-text { font-size: 1rem; margin-bottom: 2rem; }
    .service-page .highlight-box { padding: 1.4rem 1.2rem 1.2rem; }
    .service-page .highlight-box h3 { font-size: 1.35rem; }
    .service-page .feature-item { padding: 1.2rem; }
    .blog-article-template .article-header { padding: 2.6rem 1.5rem 2rem; }
    .blog-article-template .article-meta { font-size: 0.95rem; gap: 0.65rem; }
    .blog-article-template .article-content { padding: 2.1rem 1.5rem 3rem; }
    .blog-article-template .article-content p { font-size: 1.02rem; }
    .blog-article-template .article-content h2 { font-size: clamp(1.55rem, 7vw, 2.15rem); }
    .blog-article-template .article-content h3 { font-size: clamp(1.28rem, 6vw, 1.75rem); }
}

/* ============================================
   Responsive - Small Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
    .page-header h1 { font-size: 1.75rem; }
    .content-section h2, .about-section h2 { font-size: 1.4rem; }
    .cta-section h2 { font-size: 1.8rem; }
    .team-photo { width: 120px; height: 120px; }
}
