/* ==========================================================================
   POWERTECH CNC & S.R ENTERPRISE - INDUSTRIAL MODERN THEME
   100% Strict Zero Horizontal Overflow | Centered Responsive Mobile Design
   ========================================================================== */

:root {
    --primary: #d90429;
    --primary-hover: #b8001f;
    --primary-light: #ef233c;
    --primary-glow: rgba(217, 4, 41, 0.35);
    --secondary: #0f172a;
    --secondary-dark: #080c14;
    --secondary-light: #1e293b;
    --accent-blue: #0284c7;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    --wa-green: #25D366;
    --wa-green-hover: #1eb956;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 20px rgba(217, 4, 41, 0.3);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
    line-height: 1.55;
    background: #ffffff;
    margin: 0;
    padding: 0;
}

body.drawer-open {
    overflow: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.18;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

p, span, a, label, li, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.section-padding {
    padding: 55px 0;
    overflow: hidden;
    width: 100%;
}

.section-padding-sm {
    padding: 30px 0;
    overflow: hidden;
    width: 100%;
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 12px rgba(255, 51, 85, 0.4);
    }
    50% {
        text-shadow: 0 0 25px rgba(255, 51, 85, 0.8), 0 0 35px rgba(217, 4, 41, 0.5);
    }
}

/* --- BADGES & HEADERS --- */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(217, 4, 41, 0.08);
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(217, 4, 41, 0.2);
    margin-bottom: 10px;
    max-width: 100%;
}

.badge-tag.badge-tag-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fca5a5;
    border-color: rgba(255, 255, 255, 0.2);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 30px auto;
    width: 100%;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.3rem);
    color: var(--secondary);
    margin-bottom: 8px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    line-height: 1.5;
}

.section-header.text-white h2 {
    color: #ffffff;
}

.section-header.text-white p {
    color: var(--text-light);
}

/* --- BUTTONS (NEVER OVERFLOW) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition);
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 1.3;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    box-shadow: 0 3px 12px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 4, 41, 0.5);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--secondary);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-white {
    background: #ffffff;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background: #f1f5f9;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--wa-green);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: var(--wa-green-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(37, 211, 102, 0.4);
}

.btn-sm {
    padding: 7px 14px;
    font-size: 0.8rem;
}

/* Button Group */
.btn-group-responsive {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--secondary-dark);
    color: #cbd5e1;
    font-size: 0.78rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.top-bar-info {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.top-bar-info a, .top-bar-info span {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
}

.top-bar-info a:hover {
    color: #ffffff;
}

.top-bar-info i {
    color: var(--primary-light);
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
}

/* --- NAVBAR HEADER --- */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
}

.logo-icon-box {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.logo-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-text {
    min-width: 0;
    overflow: hidden;
}

.brand-text h1 {
    font-size: clamp(0.95rem, 2vw, 1.35rem);
    color: var(--secondary);
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brand-text h1 span {
    color: var(--primary);
}

.brand-text p {
    font-size: clamp(0.55rem, 0.9vw, 0.65rem);
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 14px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-menu li a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--secondary);
    padding: 6px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    display: inline-block;
    transition: color 0.2s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Mobile Controls (Clean Hamburger Only) */
.mobile-controls {
    display: none;
    align-items: center;
    flex-shrink: 0;
}

.hamburger-btn {
    background: #f1f5f9;
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 1.15rem;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hamburger-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* --- MOBILE OFF-CANVAS SLIDE DRAWER --- */
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 275px;
    max-width: 80vw;
    height: 100vh;
    background: #ffffff;
    z-index: 2999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}

.drawer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-brand img {
    width: 30px;
    height: 30px;
    border-radius: 6px;
}

.drawer-brand h3 {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1;
    margin: 0;
}

.drawer-brand h3 span {
    color: var(--primary);
}

.drawer-close {
    background: #e2e8f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.95rem;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.drawer-close:hover {
    background: var(--primary);
    color: #ffffff;
}

.drawer-menu {
    list-style: none;
    padding: 8px 0;
    margin: 0;
    flex-grow: 1;
}

.drawer-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
    border-bottom: 1px solid #f8fafc;
    transition: var(--transition);
}

.drawer-menu li a i {
    width: 16px;
    color: var(--primary);
    font-size: 0.9rem;
}

.drawer-menu li a:hover,
.drawer-menu li a.active {
    background: rgba(217, 4, 41, 0.06);
    color: var(--primary);
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

.drawer-footer {
    padding: 14px 12px;
    border-top: 1px solid var(--border);
    background: #f8fafc;
}

.drawer-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.drawer-contact-item i {
    color: var(--primary);
    font-size: 0.85rem;
}

.drawer-footer .btn {
    width: 100%;
    margin-top: 6px;
}

/* --- PAGE HERO BANNER --- */
.page-hero {
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 70%, #080c14 100%);
    color: #ffffff;
    padding: 40px 0;
    position: relative;
    border-bottom: 4px solid var(--primary);
    overflow: hidden;
    width: 100%;
}

.page-hero h1 {
    font-size: clamp(1.5rem, 3.8vw, 2.5rem);
    margin-bottom: 6px;
}

.page-hero h1 span {
    color: #ff3355;
}

.page-hero p {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    color: #cbd5e1;
    max-width: 650px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}

.breadcrumb-list a {
    color: #ffffff;
}

.breadcrumb-list a:hover {
    color: var(--primary-light);
}

/* --- HERO HOME BANNER --- */
.hero-home {
    background: radial-gradient(circle at 85% 30%, #1e293b 0%, #0f172a 60%, #080c14 100%);
    color: #ffffff;
    padding: 45px 0 50px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 25px;
    align-items: center;
    width: 100%;
}

.hero-text {
    min-width: 0;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(1.5rem, 3.6vw, 2.8rem);
    line-height: 1.12;
    margin-bottom: 12px;
    word-break: break-word;
}

.hero-text h1 span.glow {
    color: #ff3355;
    animation: pulseGlow 3s ease-in-out infinite alternate;
    display: block;
}

.hero-text p {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 18px;
    max-width: 580px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 14px;
    width: 100%;
}

.stat-item {
    min-width: 0;
}

.stat-item h3 {
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
}

.stat-item h3 span {
    color: var(--primary-light);
}

.stat-item p {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-width: 0;
}

.hero-card-frame {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.hero-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
}

.hero-img-wrap img {
    width: 100%;
    object-fit: contain;
}

.hero-floating-pill {
    position: absolute;
    bottom: -10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #ffffff;
    padding: 7px 12px;
    border-radius: var(--radius-md);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: var(--shadow-glow);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 20px);
    box-sizing: border-box;
}

/* --- BRANDS TICKER / GRID --- */
.brands-ticker-wrap {
    background: #f1f5f9;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    width: 100%;
}

.brands-ticker-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.brands-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 8px;
    width: 100%;
}

.brand-card-item {
    background: #ffffff;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 0;
}

.brand-card-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}

.brand-card-item i {
    color: var(--primary);
    font-size: 0.92rem;
    flex-shrink: 0;
}

/* --- PRODUCT CARD STYLING & FILTERING --- */
.filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
    width: 100%;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 3px 10px var(--primary-glow);
}

.products-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
    width: 100%;
}

.product-item-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    width: 100%;
    min-width: 0;
}

.product-item-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 4, 41, 0.4);
}

.product-thumb-box {
    position: relative;
    background: #f8fafc;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    width: 100%;
}

.product-thumb-box img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-item-card:hover .product-thumb-box img {
    transform: scale(1.05);
}

.product-pill {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 23, 42, 0.9);
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-zoom-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ffffff;
    color: var(--secondary);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.product-item-card:hover .product-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.product-details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.product-cat {
    font-size: 0.68rem;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.product-details h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 5px;
    line-height: 1.25;
}

.product-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 10px;
    flex-grow: 1;
}

.product-actions {
    display: flex;
    gap: 6px;
    border-top: 1px solid var(--border);
    padding-top: 8px;
    width: 100%;
}

/* --- REPAIR HIGHLIGHT CARD --- */
.repair-highlight-card {
    background: radial-gradient(circle at 10% 20%, #1e293b 0%, #0f172a 70%, #080c14 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.repair-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.repair-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    list-style: none;
    margin: 14px 0 18px;
    width: 100%;
}

.repair-checklist li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #e2e8f0;
    font-weight: 600;
    min-width: 0;
}

.repair-checklist li i {
    color: var(--wa-green);
    background: rgba(37, 211, 102, 0.15);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.repair-info-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 14px;
    border-radius: var(--radius-md);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.repair-info-box h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.repair-info-box p {
    color: #94a3b8;
    font-size: 0.82rem;
    margin-bottom: 12px;
}

/* --- PROCESS CARDS --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    margin-top: 18px;
    width: 100%;
}

.process-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.process-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.process-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-card h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.process-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* --- TWO LOCATIONS GRID --- */
.locations-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
}

.location-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 20px 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.location-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.location-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.location-box h3 {
    font-size: 1.45rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.location-sub {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 12px;
}

.loc-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}

.loc-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-main);
    line-height: 1.4;
    min-width: 0;
    width: 100%;
}

.loc-info-list li i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.loc-info-list li a {
    font-weight: 700;
    color: var(--text-main);
    word-break: break-all;
}

.loc-info-list li a:hover {
    color: var(--primary);
}

/* --- CONTACT & INQUIRY FORM (ZERO OVERFLOW) --- */
.contact-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-left {
    background: radial-gradient(circle at bottom left, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.contact-left h3 {
    font-size: 1.55rem;
    margin-bottom: 6px;
}

.contact-left p {
    color: #cbd5e1;
    line-height: 1.45;
    margin-bottom: 18px;
    font-size: 0.85rem;
}

.contact-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.c-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.c-pill i {
    font-size: 1rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.c-pill div {
    min-width: 0;
    flex-grow: 1;
    overflow: hidden;
}

.c-pill h5 {
    font-size: 0.68rem;
    color: #94a3b8;
    margin-bottom: 1px;
}

.c-pill span {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.contact-right {
    padding: 26px 20px;
    background: #ffffff;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 12px;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 3px;
}

.form-control {
    width: 100%;
    max-width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--text-main);
    transition: var(--transition);
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 75px;
}

/* --- FOOTER --- */
.footer {
    background: var(--secondary-dark);
    color: #cbd5e1;
    padding: 40px 0 16px;
    border-top: 4px solid var(--primary);
    width: 100%;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 22px;
    margin-bottom: 25px;
    width: 100%;
}

.footer-about {
    min-width: 0;
}

.footer-about h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 6px;
}

.footer-about h3 span {
    color: var(--primary);
}

.footer-about p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #94a3b8;
    margin-bottom: 10px;
}

.footer-col {
    min-width: 0;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 4px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.footer-links li a {
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links li a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.76rem;
    color: #64748b;
    width: 100%;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.floating-wa-btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: var(--wa-green);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: waPulse 2s infinite;
}

.floating-wa-btn:hover {
    transform: scale(1.06);
    color: #ffffff;
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- MODAL LIGHTBOX --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    max-width: 550px;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.25s ease;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,0.6);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
}

.modal-body {
    padding: 16px 12px;
    text-align: center;
}

.modal-body img {
    max-height: 260px;
    margin: 0 auto 10px auto;
    border-radius: var(--radius-sm);
}

.modal-body h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.modal-body p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* ==========================================================================
   PERFECT RESPONSIVE BREAKPOINTS (CENTERED & 100% CONTAINER WIDTH)
   ========================================================================== */

@media (max-width: 1140px) {
    .nav-menu {
        display: none;
    }
    .nav-actions {
        display: none;
    }
    .mobile-controls {
        display: flex;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .repair-content-grid {
        grid-template-columns: 1fr;
    }
    .locations-grid-2 {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    .nav-container {
        padding: 6px 10px;
    }
    .logo-icon-box {
        width: 34px;
        height: 34px;
    }
    .top-bar-info {
        display: none;
    }
    .top-bar .container {
        justify-content: center;
    }
    .top-bar-social {
        font-size: 0.68rem;
    }
    .section-padding {
        padding: 35px 0;
    }
    .section-header {
        margin-bottom: 20px;
    }
    .hero-home {
        padding: 28px 0 35px;
        text-align: center;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text h1 {
        font-size: 1.65rem;
    }
    .hero-text p {
        font-size: 0.85rem;
        margin: 0 auto 16px auto;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 16px;
        padding-top: 12px;
        text-align: center;
    }
    .hero-btn-group,
    .btn-group-responsive {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 8px !important;
    }
    .hero-btn-group .btn,
    .btn-group-responsive .btn,
    .btn {
        width: 100% !important;
        white-space: normal !important;
        font-size: 0.82rem !important;
        padding: 9px 12px !important;
    }
    .product-actions {
        flex-direction: column !important;
        gap: 6px !important;
    }
    .product-actions .btn {
        width: 100% !important;
    }
    .hero-floating-pill {
        position: static !important;
        margin-top: 8px !important;
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        font-size: 0.82rem !important;
    }
    .brands-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    .repair-highlight-card {
        padding: 18px 12px;
        text-align: center;
    }
    .repair-checklist {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .location-box {
        padding: 16px 12px;
        text-align: center;
    }
    .loc-info-list {
        text-align: left;
    }
    .contact-left, .contact-right {
        padding: 18px 12px;
        text-align: center;
    }
    .contact-right form {
        text-align: left;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links li a {
        justify-content: center;
    }
    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
}
