/* =====================================================
   TOWING LPT GAMBANG - Main Stylesheet
   Mobile-First Responsive Design
   ===================================================== */

/* CSS Variables */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #ed8936;
    --cta-call: #c53030;
    --cta-call-hover: #9b2c2c;
    --cta-whatsapp: #38a169;
    --cta-whatsapp-hover: #2f855a;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
    --header-height: 70px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    flex-shrink: 0;
}

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

/* Hamburger Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

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

/* Mobile Nav Drawer */
.nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 5rem 1.5rem 2rem;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 1001;
}

.nav-menu-wrapper.active {
    right: 0;
}

/* Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Nav Menu Links */
.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Nav CTA inside mobile drawer */
.nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Desktop Header CTA */
.header-cta {
    display: none;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-call {
    background: var(--cta-call);
    color: var(--bg-white);
}

.btn-call:hover {
    background: var(--cta-call-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: var(--cta-whatsapp);
    color: var(--bg-white);
}

.btn-whatsapp:hover {
    background: var(--cta-whatsapp-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-icon {
    flex-shrink: 0;
}

/* =====================================================
   HERO SECTION (Homepage)
   ===================================================== */
.hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 1.875rem;
    margin-bottom: 1rem;
}

.hero p,
.hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.hero-phone {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-phone a {
    color: var(--accent-color);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent-color);
}

/* =====================================================
   PAGE HERO (Subpages)
   ===================================================== */
.page-hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.page-hero .hero-cta {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* =====================================================
   BREADCRUMBS
   ===================================================== */
.breadcrumb {
    padding: 0.75rem 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    list-style: none;
}

.breadcrumb ol li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb ol li:not(:last-child)::after {
    content: '›';
    color: var(--text-light);
    font-weight: bold;
}

.breadcrumb ol li a {
    color: var(--text-light);
}

.breadcrumb ol li a:hover {
    color: var(--primary-color);
}

.breadcrumb ol li[aria-current="page"] {
    color: var(--primary-color);
    font-weight: 500;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section {
    padding: 3rem 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-light);
}

/* =====================================================
   SERVICES GRID
   ===================================================== */
.services-grid-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* =====================================================
   COVERAGE AREAS
   ===================================================== */
.coverage-grid {
    display: grid;
    gap: 1rem;
}

.coverage-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.coverage-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.coverage-card svg {
    width: 24px;
    height: 24px;
    color: var(--cta-call);
    flex-shrink: 0;
}

.coverage-card span {
    font-weight: 500;
}

/* Nearby Areas */
.nearby-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.nearby-grid {
    display: grid;
    gap: 1rem;
}

.nearby-card {
    display: block;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.nearby-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.nearby-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.nearby-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-section {
    padding: 3rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.faq-answer-content {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-light);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 3rem 0;
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.cta-phone a {
    color: var(--accent-color);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* =====================================================
   ABOUT FEATURES
   ===================================================== */
.about-features {
    display: grid;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.about-feature h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.about-feature p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.contact-form {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

/* =====================================================
   CONTENT SECTIONS
   ===================================================== */
.content-section {
    padding: 2.5rem 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    list-style: disc;
    color: var(--text-dark);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-col p strong {
    color: rgba(255, 255, 255, 0.95);
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-col p a {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-col p a:hover {
    color: #fbd38d;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-social a:hover {
    background: #1877f2;
    color: #fff;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* =====================================================
   FLOATING MOBILE CTA
   ===================================================== */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.75rem;
    z-index: 998;
}

.mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
}

.mobile-cta-call {
    background: var(--cta-call);
    color: var(--bg-white) !important;
}

.mobile-cta-whatsapp {
    background: var(--cta-whatsapp);
    color: var(--bg-white) !important;
}

/* =====================================================
   LOCATION PAGE SPECIFIC
   ===================================================== */
.location-hero {
    /* inherits from page-hero */
}

.location-highlights {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.highlight-item svg {
    width: 24px;
    height: 24px;
    color: var(--cta-whatsapp);
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 500;
}

/* =====================================================
   MEDIA QUERIES - TABLET (640px+)
   ===================================================== */
@media (min-width: 640px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 2rem; }
    
    .hero {
        padding-top: calc(var(--header-height) + 3rem);
        padding-bottom: 4rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nearby-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   MEDIA QUERIES - DESKTOP (1024px+)
   ===================================================== */
@media (min-width: 1024px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    
    .section {
        padding: 4rem 0;
    }
    
    /* Desktop: hide hamburger, show inline nav */
    .nav-toggle {
        display: none;
    }
    
    .nav-menu-wrapper {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
        overflow: visible;
    }
    
    .nav-menu {
        flex-direction: row;
        gap: 0.25rem;
    }
    
    .nav-menu li a {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-cta {
        display: none;
    }
    
    .header-cta {
        display: flex;
        gap: 0.75rem;
    }
    
    .header-cta .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero {
        padding-top: calc(var(--header-height) + 4rem);
        padding-bottom: 5rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-phone {
        font-size: 2rem;
    }
    
    .page-hero {
        padding-top: calc(var(--header-height) + 3rem);
        padding-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .coverage-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .nearby-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .mobile-cta {
        display: none;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-phone {
        font-size: 2rem;
    }
}

/* =====================================================
   UTILITIES
   ===================================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Schema address - hidden but accessible */
.schema-address {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Body bottom padding for mobile CTA */
@media (max-width: 1023px) {
    body {
        padding-bottom: 70px;
    }
}

/* =====================================================
   FIX: Homepage SVG service icons sizing
   ===================================================== */
.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

/* =====================================================
   FIX: page-header (used by perkhidmatan, kawasan-liputan)
   Same styling as page-hero
   ===================================================== */
.page-header {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    text-align: center;
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
}

@media (min-width: 1024px) {
    .page-header {
        padding-top: calc(var(--header-height) + 3rem);
        padding-bottom: 3rem;
    }
}

/* =====================================================
   FIX: Features / Kelebihan Kami section (tentang-kami)
   ===================================================== */
.features-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =====================================================
   FIX: Related / Kawasan Liputan Lain (location pages)
   ===================================================== */
.related-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.location-links {
    display: grid;
    gap: 1rem;
}

.location-link {
    display: block;
    background: var(--bg-white);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

.location-link:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    color: var(--accent-color);
}

@media (min-width: 640px) {
    .location-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .location-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =====================================================
   CONTACT PAGE - Cards, Form, Tips
   ===================================================== */
.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.contact-card .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 10px;
}

.contact-card .contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-card .contact-details p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.contact-card .contact-details p:last-child {
    margin-bottom: 0;
}

.contact-value a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.0625rem;
}

.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-form-wrapper h2 {
    margin-top: 0;
}

.tips-list {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.tips-list li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.required {
    color: var(--cta-call);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-submit:hover {
    background: var(--secondary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
}
