/* ==========================================================================
   Fiymark Web Design Agency - Precision Production Stylesheet
   Font: 'Arimo', sans-serif | Brand Primary: #004dc4 | Dark Mode Canvas
   ========================================================================== */

:root {
    --primary: #004dc4;
    --primary-dark: #003699;
    --primary-light: #2570ff;
    --primary-glow: rgba(0, 77, 196, 0.35);
    
    --bg-main: #080D1A;
    --bg-card: #111A2E;
    --bg-card-hover: #182442;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 77, 196, 0.4);
    
    --text-main: #F8FAFC;
    --text-sub: #CBD5E1;
    --text-muted: #94A3B8;
    
    --header-bg: rgba(8, 13, 26, 0.88);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: 'Arimo', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.65;
    word-break: break-word;
    overflow-wrap: anywhere;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Boxed Container Inspiration */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5.5rem 0;
}

.text-center { text-align: center; }

.text-brand { color: var(--primary); }
.text-gradient {
    background: linear-gradient(135deg, #2570ff 0%, #004dc4 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Transparent Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-sub);
    position: relative;
    padding: 0.3rem 0;
}

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

.nav-link:hover, .nav-link.active {
    color: #FFFFFF;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Signature Unified Dynamic Shimmer Buttons Across Website */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Arimo', sans-serif;
    border-radius: 9999px;
    cursor: pointer;
    border: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Dynamic Shimmer Light Reflection Sweep on Hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.65s ease;
    z-index: 2;
}

.btn:hover::before {
    left: 100%;
}

.btn span, .btn i {
    position: relative;
    z-index: 3;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 20px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 77, 196, 0.55);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-3px) scale(1.02);
    background: var(--bg-card-hover);
}

.btn-lg {
    padding: 1.15rem 2.25rem;
    font-size: 1.05rem;
}

.btn-full { width: 100%; }

/* Clean Card Architecture */
.clean-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.clean-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 35px var(--primary-glow);
}

/* Section Header */
.section-header {
    margin-bottom: 3.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-pill {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    border-radius: 9999px;
    background: rgba(0, 77, 196, 0.12);
    color: var(--primary-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 77, 196, 0.3);
}

.section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    margin-bottom: 0.9rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Hero Section & Dynamic Word Rotator (No Underline + Theme Gradient Text) */
.hero-section {
    padding-top: 9.5rem;
    padding-bottom: 4rem;
    position: relative;
}

.hero-box {
    max-width: 860px;
    margin: 0 auto;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 1.75rem;
    font-size: 0.88rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 1.4rem;
    letter-spacing: -0.02em;
}

/* No underline + Theme Gradient Color */
.word-rotator {
    background: linear-gradient(135deg, #2570ff 0%, #004dc4 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    border-bottom: none;
    padding-bottom: 0;
    font-weight: 800;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.word-rotator.fade-out {
    opacity: 0;
    transform: translateY(-8px);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

/* Brands That Trust Us - Original Logo Colors, Larger Size, Infinite Marquee */
.brand-marquee-section {
    padding: 3rem 0;
    background: transparent; /* Same main canvas background */
    overflow: hidden;
}

.marquee-heading {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.marquee-row {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-track-left {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    animation: marqueeLeft 28s linear infinite;
    will-change: transform;
}

.marquee-track-right {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    animation: marqueeRight 28s linear infinite;
    will-change: transform;
}

.marquee-logo {
    height: 20px; /* Bigger logo size */
    max-height: 20px;
    width: auto;
    object-fit: contain;
    filter: none; /* Keep original logo colors! */
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.marquee-logo:hover {
    transform: scale(1.08);
    opacity: 1;
}

@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Service Showcase Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.85rem;
    background: rgba(0, 77, 196, 0.15);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(0, 77, 196, 0.3);
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-list li {
    font-size: 0.88rem;
    color: var(--text-sub);
    margin-bottom: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Portfolio Work Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.portfolio-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(8, 13, 26, 0.88);
    backdrop-filter: blur(8px);
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid var(--border-color);
}

.portfolio-info {
    padding: 1.75rem;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Dynamic Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.team-avatar-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.25rem auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.team-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-avatar-box img {
    transform: scale(1.08);
}

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-sub);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Pricing Grid & RECOMMENDED Badge Overflow Fix */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem; /* Room for badge */
}

.pricing-card {
    padding: 2.5rem 2rem;
    position: relative;
    overflow: visible; /* Prevent badge cut off! */
}

.featured-pricing {
    border-color: var(--primary);
    box-shadow: 0 12px 40px var(--primary-glow);
    transform: scale(1.03);
}

.recommended-badge {
    position: absolute;
    top: -16px; /* Floating nicely on top */
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.38rem 1.35rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px var(--primary-glow);
    white-space: nowrap;
    z-index: 10;
}

.plan-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.plan-title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.plan-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    padding: 2rem;
}

.review-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-sub);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-meta strong {
    display: block;
    font-size: 0.95rem;
}

.client-meta span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-box {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1.35rem 1.8rem;
    cursor: pointer;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question h4 {
    font-size: 1.08rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 0.88rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 1rem;
}

/* Contact Section & Mobile Alignment Fixes */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    padding: 3.5rem 3rem;
    width: 100%;
}

.contact-meta {
    width: 100%;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.meta-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    min-height: 46px;
    aspect-ratio: 1 / 1;
    border-radius: 0.8rem;
    background: rgba(0, 77, 196, 0.15);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    border: 1px solid rgba(0, 77, 196, 0.3);
    flex-shrink: 0;
}

.meta-info {
    width: calc(100% - 60px);
    word-break: break-word;
    overflow-wrap: anywhere;
}

.meta-info h5 { font-size: 0.92rem; font-weight: 700; }
.meta-info p { font-size: 0.88rem; color: var(--text-muted); word-break: break-word; overflow-wrap: anywhere; }

.form-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.form-box h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }

.form-box form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem; /* Distinct gap between form fields! */
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-sub);
}

.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    padding: 0.88rem 1.1rem;
    border-radius: 0.75rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    border-color: var(--primary);
}

.form-box .btn {
    margin-top: 0.6rem; /* Gap before submit button */
}

/* Footer (Logo, 4 Crisp Social Icons, Centered Copyright) */
.footer {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding-top: 4.5rem;
    padding-bottom: 2.2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo img { height: 38px; margin-bottom: 1.25rem; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; max-width: 320px; margin-bottom: 1.25rem; }

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-socials .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-sub);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-socials .social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-col h4 { font-size: 1rem; margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--primary-light); }

.footer-bottom-centered {
    padding: 2.2rem 1rem 1rem 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

/* Fixed Sticky Floating Back-To-Top Button on Bottom-Right */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--primary);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 20px var(--primary-glow);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px) scale(1.05);
}

/* Blog & Subpage Styles */
.page-hero {
    padding-top: 9.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

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

.blog-card {
    overflow: hidden;
}

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

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

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

.blog-content {
    padding: 1.75rem;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.career-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.career-card {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.position-tag {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(0, 77, 196, 0.15);
    color: var(--primary-light);
    font-weight: 700;
}

/* Mobile Breakpoints & Center Alignment Fixes */
@media (max-width: 1024px) {
    .services-grid, .portfolio-grid, .pricing-grid, .reviews-grid, .blog-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 1.2rem; }
    .section-padding { padding: 4rem 0; }
    
    .nav-menu {
        position: fixed;
        top: 68px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 68px);
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active { left: 0; }
    .mobile-toggle { display: block; }
    .nav-cta { display: none; }
    
    .hero-section { padding-top: 8rem; padding-bottom: 3rem; }
    .hero-title { font-size: 2.1rem; }
    .hero-desc { font-size: 1rem; }
    .hero-btns { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-btns .btn { width: 100%; }
    
    .services-grid, .portfolio-grid, .pricing-grid, .reviews-grid, .blog-grid, .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-pricing { transform: none; }
    
    /* Mobile Contact Layout Equal Side Margins Fix */
    .contact-layout {
        padding: 1.75rem 1.2rem;
        gap: 2.2rem;
        border-radius: 1rem;
        margin: 0 auto;
        width: 100%;
    }
    
    .form-box {
        width: 100%;
        margin: 0 auto;
    }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-socials { justify-content: center; }
    .career-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .contact-layout { padding: 1.5rem 1rem; margin: 0 auto; }
    .pricing-card, .service-card, .review-card, .form-box, .team-card { padding: 1.5rem 1.2rem; }
}
