:root {
    --primary: #eb5c18;
    --primary-dark: #d14a10;
    --secondary: #408bd1;
    --dark: #313543;
    --text: #262626;
    --text-light: #6c757d;
    --light: #f8f9fa;
    --white: #ffffff;
    --border: #e0e0e0;
    color-scheme: light;
    accent-color: var(--primary);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 70px;
    padding-left: 15px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    font-weight: 600;
    color: var(--dark);
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.lang-switch {
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.lang-switch:hover {
    background: var(--primary-dark);
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px 0;
}

/* --- Hero --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 110px;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
        url('../assets/service_delivery_man.webp') 20% center/cover no-repeat;
    z-index: -1;
    animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* --- Stats Banner --- */
.stats-banner {
    background: var(--dark);
    padding: 60px 0;
    color: var(--white);
    margin-top: -5px;
    /* Fix small gap if any */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Hero mobile fix */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-position: top center;
        min-height: 60vh;
    }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding-top: 100px;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    background: var(--white);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 3px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--white);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
}

.btn:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--secondary);
}

/* --- Header CTA (Cool Version) --- */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 100%);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800 !important;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(235, 92, 24, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(235, 92, 24, 0.6);
    color: var(--white) !important;
}

.btn-nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-nav-cta:hover::after {
    left: 100%;
}

/* --- Autocomplete --- */
.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 6px 6px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.autocomplete-list.active {
    display: block;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    color: var(--text);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.focused {
    background: #f8f9fa;
    color: var(--primary);
}

.autocomplete-item strong {
    color: var(--primary);
}

/* --- Sections --- */
section {
    padding: 80px 0;
    overflow: hidden;
    /* Prevent horizontal overflow */
    position: relative;
    /* Context for absolute positioning */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
}

/* --- About --- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1rem;
}

/* --- Mission/Vision --- */
.mission-vision {
    background: var(--light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 35px;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    box-shadow: 0 15px 40px rgba(235, 92, 24, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px 10px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mv-card:hover::before {
    opacity: 1;
}

.mv-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.mv-card:hover h3 {
    transform: scale(1.05);
}

.mv-card p {
    color: var(--text-light);
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--primary);
    padding: 60px 0;
    color: var(--white);
}

.cta-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 10px;
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-banner .btn:hover {
    background: transparent;
    color: var(--white);
}

/* --- Services --- */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 25px;
    transition: box-shadow 0.3s, transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-cta {
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.service-cta h4 {
    color: var(--white);
    font-size: 1.3rem;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.85);
}

.service-cta .btn {
    margin-top: 15px;
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.service-cta:hover {
    box-shadow: 0 15px 40px rgba(64, 139, 209, 0.3);
    transform: translateY(-5px);
}

.service-cta:hover .btn {
    background: transparent;
    color: var(--white);
}

.service-types {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 35px;
}

.service-types h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.service-types ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-types li {
    color: var(--text-light);
    padding: 5px 0;
}

/* --- Why Us --- */
.why-us {
    background: var(--light);
}

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

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: var(--light);
}

.accordion-header h4 {
    font-size: 1rem;
    color: var(--dark);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.accordion-body p {
    padding: 0 25px 20px;
    color: var(--text-light);
}

/* --- Leaders Banner --- */
.leaders-banner {
    min-height: 350px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(49, 53, 67, 0.85), rgba(49, 53, 67, 0.85)),
        url('../assets/banner_container_ship.webp') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.leaders-banner h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.leaders-banner p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.btn-nav-quote {
    background: #25d366;
    /* WhatsApp Green for high visibility */
    color: white !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    margin: 0 10px;
}

.btn-nav-quote:hover {
    background: #1faf53;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
    color: white !important;
}

/* --- Contact --- */
.contact {
    background: var(--white);
}

.contact-callout {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 50px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(235, 92, 24, 0.25);
}

.contact-callout h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-callout a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    transition: opacity 0.3s;
}

.contact-callout a:hover {
    opacity: 0.85;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info img {
    height: 60px;
    margin-bottom: 25px;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.contact-info svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
}

/* --- Contact Form (Card Design) --- */
.contact-form {
    background: var(--light);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    color: var(--dark);
    font-size: 1.4rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    /* Prevents iOS auto-zoom */
    margin-bottom: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #adb5bd;
    opacity: 1;
    /* Edge/Firefox fix */
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(235, 92, 24, 0.15);
}

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

.contact-form .btn {
    width: 100%;
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 100%);
    border: none;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(235, 92, 24, 0.3);
    -webkit-appearance: none;
    appearance: none;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 92, 24, 0.45);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    border: none;
}

/* --- Footer --- */
footer {
    background: var(--dark);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-cta .phone-link {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.footer-cta .phone-link:hover {
    transform: scale(1.05);
}

.footer-social {
    text-align: right;
}

.footer-social h4 {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* --- Values Section --- */
.values-section {
    margin-top: 50px;
    text-align: center;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.value-item {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.value-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Process Section --- */
.process {
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 10px rgba(235, 92, 24, 0.3);
}

.step-content h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- FAQ Section --- */
.faq-section {
    background: var(--white);
}

/* --- Footer Legal --- */
.footer-legal {
    margin: 10px 0;
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* --- Legal Pages --- */
.legal-page {
    padding-top: 150px;
    padding-bottom: 80px;
    background: var(--white);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}


/* --- Dynamic Quote Form --- */
.quote-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-section-title {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(235, 92, 24, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(235, 92, 24, 0.1);
}

/* Package Item Styles */
.package-item {
    background: #f8f9fa;
    border: 1px dashed var(--border);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pkg-header h5 {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.remove-pkg {
    color: #dc3545;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
}

.remove-pkg:hover {
    text-decoration: underline;
}

/* Input Groups */
.weight-input-group {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10px;
}

.dims-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dims-input-group .x {
    color: var(--text-light);
    font-weight: bold;
}

.money-input-group {
    position: relative;
}

.money-input-group .currency {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-weight: 600;
}

.money-input-group input {
    padding-left: 25px;
}

/* Add Button */
.add-package-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    padding: 10px 20px;
    border: 2px dashed var(--primary);
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(235, 92, 24, 0.05);
}

.add-package-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.add-package-btn .plus {
    font-size: 1.2rem;
    line-height: 1;
}

.btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
}

.btn-lg {
    padding: 16px;
    font-size: 1.1rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
}

.whatsapp-icon {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.modal-content {
    background: var(--white);
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: var(--primary);
    color: var(--white);
    padding: 25px 30px;
    position: relative;
}

.modal-header h3 {
    font-size: 1.4rem;
    padding-right: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px;
    color: var(--text);
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.service-card {
    cursor: pointer;
}

.service-card .btn-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

/* --- Floating Action Buttons --- */
.fab-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-phone {
    background: var(--primary);
}

.fab svg {
    width: 26px;
    height: 26px;
    fill: white;
}

/* --- Responsive --- */
@media (max-width: 992px) {

    .about-grid,
    .contact-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    /* Mobile Menu Logic */
    nav {
        display: none;
    }

    .mobile-menu {
        display: block;
        padding: 10px;
        z-index: 1001;
    }

    nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
    }

    nav.active a {
        padding: 15px;
        border-bottom: 1px solid #eee;
        text-align: center;
    }

    .service-types ul {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        background-attachment: scroll;
        background-position: top center;
        min-height: 60vh;
    }
}

/* --- Smartphone Optimizations --- */
@media (max-width: 768px) {

    /* Hero adjustments */
    .hero {
        margin-top: 80px;
        min-height: 55vh;
    }

    .hero-content {
        padding-top: 50px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    /* Logo smaller on mobile */
    .logo img {
        height: 50px;
        padding-left: 5px;
    }

    .header-inner {
        padding: 10px 0;
    }

    /* Contact section */
    .contact {
        padding: 50px 0;
    }

    .contact-callout {
        padding: 25px 20px;
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .contact-callout h3 {
        font-size: 1.1rem;
    }

    .contact-callout a {
        font-size: 1.5rem;
    }

    .contact-grid {
        gap: 30px;
    }

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

    .contact-info img {
        margin: 0 auto 20px;
        display: block;
    }

    .contact-info li {
        justify-content: center;
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }

    /* Form mobile refinements */
    .contact-form {
        padding: 25px 20px;
    }

    .contact-form h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        font-size: 16px;
        border-radius: 8px;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .contact-form .btn {
        padding: 16px;
        font-size: 1rem;
        min-height: 48px;
        /* Touch-friendly */
    }

    /* General button touch targets */
    .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Section padding reduction on mobile */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* CTA banner mobile */
    .cta-banner {
        padding: 40px 0;
    }

    .cta-banner h2 {
        font-size: 1.3rem;
    }

    /* Leaders banner mobile */
    .leaders-banner {
        min-height: 250px;
        background-attachment: scroll;
    }

    .leaders-banner h2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .leaders-banner p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    /* Footer mobile */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 15px;
        display: block;
    }

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

    .footer-cta .phone-link {
        font-size: 1.6rem;
    }

    /* Map height on mobile */
    .contact iframe {
        height: 250px;
    }

    /* Modal mobile */
    .modal-content {
        max-height: 85vh;
        margin: 10px;
        border-radius: 12px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 20px;
    }

    /* FABs mobile positioning */
    .fab-container {
        bottom: 20px;
        right: 18px;
    }

    .fab {
        width: 50px;
        height: 50px;
    }

    .fab svg {
        width: 22px;
        height: 22px;
    }

    /* Mission/Vision cards */
    .mv-card {
        padding: 25px;
    }

    /* Values wrap better on mobile */
    .value-item {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    /* Process steps stacked */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Quote form mobile */
    .quote-card {
        padding: 25px 20px;
    }
}

/* --- Extra small devices (under 400px) --- */
@media (max-width: 400px) {

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        padding: 4px 12px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .contact-callout a {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}