/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a2e5c;
    --primary-light: #1a4a7a;
    --primary-dark: #061d3a;
    --secondary: #e67e22;
    --secondary-light: #f39c12;
    --secondary-dark: #d35400;
    --accent: #f39c12;
    --light-bg: #f0f4f9;
    --white: #ffffff;
    --text: #1a2a3a;
    --text-light: #5a6a7a;
    --text-lighter: #8a9aaa;
    --shadow-sm: 0 4px 20px rgba(10, 46, 92, 0.08);
    --shadow-md: 0 8px 40px rgba(10, 46, 92, 0.12);
    --shadow-lg: 0 16px 60px rgba(10, 46, 92, 0.16);
    --shadow-xl: 0 24px 80px rgba(10, 46, 92, 0.20);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---------- HEADER / NAV ---------- */
header {
    background: rgba(10, 46, 92, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--secondary);
    font-size: 1.6rem;
}

.logo span {
    color: var(--secondary);
}

/* ---------- HAMBURGER MENU ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: var(--transition);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    display: inline-block;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.35);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    flex-wrap: wrap;
}

.header-contact i {
    color: var(--secondary);
    margin-right: 4px;
}

/* ---------- PAGES ---------- */
.page {
    display: none;
    animation: fadeUp 0.6s ease forwards;
    padding: 24px 0 40px;
}

.page.active {
    display: block;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- COMMON ---------- */
.section-header {
    margin-bottom: 24px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: rgba(230, 126, 34, 0.10);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 4px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.premium-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 46, 92, 0.06);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

.quote-block {
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(230, 126, 34, 0.06);
    border-radius: var(--radius);
    border-left: 3px solid var(--secondary);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.quote-block i {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.quote-block span {
    font-weight: 500;
    color: var(--primary);
    font-style: italic;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    box-shadow: 0 4px 24px rgba(230, 126, 34, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.badge-list li {
    background: rgba(10, 46, 92, 0.06);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(10, 46, 92, 0.06);
}

/* ---------- HOME PAGE ---------- */
.hero {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: rgba(255, 255, 255, 0.10);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero h1 {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 8px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1rem;
    opacity: 0.85;
    margin: 8px 0 18px;
    max-width: 100%;
}

.hero .btn {
    font-size: 0.9rem;
    padding: 12px 28px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
    color: var(--secondary);
    line-height: 1.2;
}

.stat-item span {
    font-size: 0.7rem;
    opacity: 0.75;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-icon {
    display: none;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.vm-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 46, 92, 0.04);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vm-card .vm-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.vm-card.vision .vm-icon {
    background: rgba(10, 46, 92, 0.08);
    color: var(--primary);
}

.vm-card.mission .vm-icon {
    background: rgba(230, 126, 34, 0.10);
    color: var(--secondary);
}

.vm-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.vm-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.vm-card ul {
    list-style: none;
    color: var(--text-light);
    font-size: 0.9rem;
}

.vm-card ul li {
    padding: 3px 0;
    line-height: 1.5;
}

/* ---------- SERVICES PAGE ---------- */
.services-hero {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 28px;
}

.services-hero h2 {
    font-size: 1.8rem;
    font-weight: 800;
}

.services-hero h2 i {
    color: var(--secondary);
    margin-right: 10px;
}

.services-hero p {
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 100%;
    margin-top: 4px;
}

.service-list {
    list-style: none;
    margin-top: 8px;
}

.service-list li {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.service-list li i {
    color: var(--secondary);
    width: 18px;
    font-size: 0.8rem;
}

.service-card.premium {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 46, 92, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    opacity: 0;
    transition: var(--transition);
}

.service-card.premium:hover::before {
    opacity: 1;
}

.service-card.premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon-wrapper {
    margin-bottom: 12px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(230, 126, 34, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--secondary);
    transition: var(--transition);
}

.service-card.premium:hover .service-icon {
    background: rgba(230, 126, 34, 0.15);
    transform: scale(1.05);
}

.service-card.premium h3 {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.service-card.premium p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.highlight-box.premium {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.highlight-box.premium h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.highlight-box.premium p {
    opacity: 0.8;
    font-size: 0.85rem;
}

/* ---------- TEAM PAGE ---------- */
.profile-card.premium {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 46, 92, 0.04);
}

.profile-avatar {
    flex: 0 0 160px;
    text-align: center;
    width: 100%;
}

.profile-avatar .avatar-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 8px 40px rgba(10, 46, 92, 0.20);
    overflow: hidden;
    border: 3px solid var(--white);
    outline: 2px solid rgba(230, 126, 34, 0.20);
}

.avatar-circle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-name h2 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 800;
}

.profile-name .title {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.8rem;
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.profile-info h3 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.profile-info p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.profile-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    background: var(--light-bg);
    padding: 4px 12px;
    border-radius: 20px;
}

.profile-tags .tag i {
    color: var(--secondary);
    font-size: 0.7rem;
}

.profile-quote {
    background: rgba(230, 126, 34, 0.04);
    padding: 14px 18px;
    border-radius: var(--radius);
    border-left: 3px solid var(--secondary);
    margin: 12px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.profile-quote i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 2px;
    opacity: 0.6;
}

.profile-quote p {
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
}

/* ---------- CONTACT PAGE ---------- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 20px 0 32px;
}

.industry-item.premium {
    background: var(--white);
    padding: 16px 12px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 46, 92, 0.04);
    transition: var(--transition);
}

.industry-item.premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(230, 126, 34, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 1.4rem;
    color: var(--secondary);
    transition: var(--transition);
}

.industry-item.premium:hover .industry-icon {
    background: rgba(230, 126, 34, 0.12);
    transform: scale(1.05);
}

.industry-item.premium h4 {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 16px 0 28px;
}

.step.premium {
    flex: 1;
    min-width: 140px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 46, 92, 0.04);
    transition: var(--transition);
    position: relative;
}

.step.premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.step-content h4 {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
}

.contact-info.premium {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 46, 92, 0.04);
}

.contact-item.premium {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 140px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(230, 126, 34, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-item.premium .label {
    font-size: 0.7rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-item.premium .value {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo i {
    color: var(--secondary);
}

.footer-logo span {
    color: var(--secondary);
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4px;
}

.footer-divider {
    width: 40px;
    height: 2px;
    background: rgba(230, 126, 34, 0.30);
    margin: 12px auto;
}

footer p {
    font-size: 0.8rem;
}

footer span {
    color: var(--secondary);
}

footer i.fa-heart {
    color: #e74c3c;
}

/* ---------- RESPONSIVE ---------- */
/* Tablets and smaller laptops */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0 8px;
        gap: 2px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 12px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .header-contact {
        display: none;
    }

    .header-contact.mobile-show {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        gap: 20px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .vision-mission,
    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        padding: 28px 20px;
        border-radius: var(--radius);
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stats strong {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .profile-card.premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .profile-avatar {
        flex: 0 0 auto;
    }

    .profile-avatar .avatar-circle {
        width: 120px;
        height: 120px;
    }

    .profile-tags {
        justify-content: center;
    }

    .profile-quote {
        text-align: left;
    }

    .highlight-box.premium {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info.premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .contact-item.premium {
        flex-direction: column;
        text-align: center;
        min-width: auto;
    }

    .process-steps {
        flex-direction: column;
    }

    .step.premium {
        min-width: auto;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 16px 20px;
    }

    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content {
        text-align: left;
    }

    .services-hero {
        padding: 24px 20px;
        border-radius: var(--radius);
    }

    .services-hero h2 {
        font-size: 1.5rem;
    }

    .hero-icon {
        display: block;
        font-size: 3rem;
        opacity: 0.10;
        color: var(--secondary);
        position: absolute;
        right: 16px;
        bottom: 16px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .vision-mission,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 1rem;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .hero {
        padding: 24px 16px;
        border-radius: var(--radius);
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .btn {
        font-size: 0.85rem;
        padding: 10px 24px;
        min-height: 44px;
        width: 100%;
    }

    .hero-stats {
        gap: 10px;
        justify-content: center;
    }

    .hero-stats strong {
        font-size: 1rem;
    }

    .hero-stats span {
        font-size: 0.65rem;
    }

    .stat-divider {
        height: 24px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-sub {
        font-size: 0.9rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 10px 20px;
        min-height: 44px;
        width: 100%;
    }

    .card {
        padding: 16px;
    }

    .premium-card {
        padding: 18px 16px;
        border-radius: var(--radius);
    }

    .quote-block {
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .service-card.premium {
        padding: 16px;
    }

    .service-card.premium .service-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }

    .service-card.premium h3 {
        font-size: 0.95rem;
    }

    .service-card.premium p {
        font-size: 0.8rem;
    }

    .service-list li {
        font-size: 0.8rem;
    }

    .profile-avatar .avatar-circle {
        width: 100px;
        height: 100px;
    }

    .profile-card.premium {
        padding: 16px;
        border-radius: var(--radius);
    }

    .profile-name h2 {
        font-size: 1.1rem;
    }

    .profile-info h3 {
        font-size: 1rem;
    }

    .profile-info p {
        font-size: 0.85rem;
    }

    .profile-tags .tag {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .profile-quote p {
        font-size: 0.85rem;
    }

    .vm-card {
        padding: 16px;
    }

    .vm-card .vm-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .vm-card h3 {
        font-size: 1rem;
    }

    .vm-card p,
    .vm-card ul li {
        font-size: 0.85rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .industry-item.premium {
        padding: 12px 8px;
    }

    .industry-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .industry-item.premium h4 {
        font-size: 0.75rem;
    }

    .contact-info.premium {
        padding: 16px;
        border-radius: var(--radius);
    }

    .contact-item.premium {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .contact-item.premium .value {
        font-size: 0.8rem;
    }

    .highlight-box.premium {
        padding: 16px;
        border-radius: var(--radius);
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .highlight-box.premium h3 {
        font-size: 0.95rem;
    }

    .highlight-box.premium p {
        font-size: 0.8rem;
    }

    .services-hero {
        padding: 20px 16px;
        border-radius: var(--radius);
    }

    .services-hero h2 {
        font-size: 1.3rem;
    }

    .services-hero p {
        font-size: 0.85rem;
    }

    .step.premium {
        padding: 14px 16px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .step-content h4 {
        font-size: 0.85rem;
    }

    .step-content p {
        font-size: 0.75rem;
    }

    .badge-list li {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .section-tag {
        font-size: 0.6rem;
        padding: 3px 12px;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    footer p {
        font-size: 0.7rem;
    }
}

/* Very small phones */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .profile-avatar .avatar-circle {
        width: 90px;
        height: 90px;
    }

    .contact-item.premium .value {
        font-size: 0.75rem;
    }
}