/* UDS Trading – Global Custom Stylesheet */
:root {
    --primary: #0b1424;
    --primary-light: #15253f;
    --accent: #e07820;
    --accent-hover: #c96818;
    --yellow: #ffc800;
    --yellow-hover: #e6b800;
    --secondary-blue: #055ce0;
    --success: #2C7A61;
    --success-light: #ecfdf5;
    --danger: #be123c;
    --danger-light: #fff1f2;
    --bg-light: #f8fafc;
    --bg-gray: #dcdcdc;
    --text-dark: #111111;
    --text-muted: #555555;
    --text-light: #4b4b4b;
    --text-white: #ffffff;
    --border-gray: #e2e8f0;
    --border-dark: #b7b7b7;
    --font-family: 'Montserrat', sans-serif;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-light);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* Layout */
.w-full {
    width: 100%;
}

.max-w-7xl {
    max-width: 1280px;
}

.max-w-grid {
    max-width: 1525px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex-1 {
    flex: 1 1 0%;
}

.shrink-0 {
    flex-shrink: 0;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-40 {
    z-index: 40;
}

.hidden {
    display: none !important;
}

/* Grid Helper */
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-5 {
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Header & Footer Components */
.main-header {
    background-color: var(--primary);
    color: var(--text-white);
    min-height: 88px;
    padding: 0.75rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.header-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    background-color: #fff;
    padding: 2px;
}

.header-title-block h1 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.header-title-block p {
    font-size: 11px;
    color: #94a3b8;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-link {
    font-size: 0.875rem;
    font-weight: 500;
}

.header-link:hover {
    color: var(--accent);
}

.header-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.header-user:hover {
    color: var(--accent);
}

.header-user i {
    color: var(--accent);
}

.main-footer {
    background-color: #0B1321;
    color: #94a3b8;
    padding-top: 5rem;
    padding-bottom: 0;
    margin-top: 5rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand-col {
    padding-right: 1.5rem;
}

.footer-logo-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #facc15;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.footer-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand-text {
    font-size: 0.875rem;
    line-height: 1.625;
    color: #d1d5db;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: #f97316;
}

.footer-contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-details li {
    color: #d1d5db;
}

.footer-contact-details a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-details a:hover {
    color: #f97316;
}

.footer-social-wrap {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.footer-social-btn {
    width: 1.75rem;
    height: 1.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 2px;
}

.footer-social-btn:hover {
    background-color: #f97316;
}

.footer-social-btn i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-social-btn:hover i {
    color: var(--text-white);
}

.footer-copyright-bar {
    background-color: #E07A24;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Home / Hardware - Hero Banner */
.hero-banner-section {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 30;
    padding: 0 1rem;
}

.banner-container {
    position: relative;
    width: 100%;
    max-width: 1525px;
    min-height: 380px;
    border-radius: 43px;
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
    background: #021b44;
}

.banner-bg-wrapper {
    position: absolute;
    inset: 0;
    border-radius: 43px;
    overflow: hidden;
}

.banner-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 27, 61, 0.7) 40%, rgba(5, 92, 224, 0.8) 100%);
}

.banner-content {
    position: relative;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 3rem 2rem;
    text-align: center;
}

/* Locations Badge */
.location-badge-container {
    position: relative;
    z-index: 80;
    margin-bottom: 1.5rem;
}

.location-badge-btn {
    background-color: #2CA4A9;
    color: var(--text-white);
    font-size: 10px;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.location-badge-btn:hover {
    background-color: #23939a;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 0.75rem;
    width: 230px;
    background: var(--bg-gray);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 60vh;
    overflow-y: auto;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-item {
    width: 100%;
    text-align: left;
    background: var(--text-white);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: #f3f4f6;
}

.dropdown-item.is-selected {
    background: #9bf6ff;
    border-color: #7be0eb;
}

/* Search and Filters Bar */
.search-filter-wrapper {
    position: relative;
    z-index: 40;
    width: 100%;
    max-width: 56rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .search-filter-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

.search-box {
    flex: 1;
    background: var(--text-white);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    color: #374151;
    font-size: 0.875rem;
    background: transparent;
}

.search-box input::placeholder {
    color: #9ca3af;
}

.search-submit-btn {
    background: var(--accent);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit-btn:hover {
    background: var(--accent-hover);
}

.filter-wrapper {
    position: relative;
    z-index: 70;
}

.filter-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(249, 115, 22, 0.7);
    background: transparent;
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn i {
    color: #f97316;
    font-size: 1.125rem;
}

.filter-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.75rem;
    width: 240px;
    background: var(--bg-gray);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 60vh;
    overflow-y: auto;
}

@media (max-width: 640px) {
    .filter-dropdown {
        left: 0;
        width: 100%;
    }
}

.filter-dropdown.active {
    display: block;
}

/* Category & Hardware Cards Grid */
.cards-grid-section {
    max-width: 1525px;
    margin: 2.5rem auto 4rem auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 20;
}

.hardware-card {
    position: relative;
    border-radius: 29px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 256px;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.hardware-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.hardware-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hardware-card:hover .hardware-card-img {
    transform: scale(1.05);
}

.hardware-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 21, 36, 0.95) 0%, rgba(11, 21, 36, 0.15) 75%, transparent 100%);
}

.hardware-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
}

.hardware-card-info h3 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0.25rem;
}

.hardware-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--yellow);
    font-size: 0.75rem;
}

.empty-results {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* Promo Banner splits */
.promo-section {
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    max-width: 1525px;
}

.promo-container {
    background-color: #d6d6d6;
    border-radius: 40px;
    padding: 2.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    position: relative;
}

@media (min-width: 1024px) {
    .promo-container {
        flex-direction: row;
    }
}

.promo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    width: 100%;
    justify-content: center;
}

@media (min-width: 640px) {
    .promo-block {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .promo-block-left {
        justify-content: flex-end;
    }

    .promo-block-right {
        justify-content: flex-start;
    }
}

.promo-icon-large {
    font-size: 4.5rem;
    color: #d96f47;
    position: relative;
    line-height: 1;
}

.promo-icon-small {
    font-size: 1.5rem;
    color: #379683;
    position: absolute;
    bottom: -4px;
    right: -16px;
}

.promo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 640px) {
    .promo-text-wrapper {
        align-items: flex-start;
    }
}

.promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.promo-desc {
    font-size: 13px;
    color: #4b5563;
    margin-top: 0.25rem;
    max-width: 300px;
    line-height: 1.3;
}

.promo-btn {
    margin-top: 0.75rem;
    background: var(--yellow);
    color: #000;
    font-weight: 500;
    font-size: 13px;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.promo-btn:hover {
    background: var(--yellow-hover);
}

.promo-btn-blue {
    background: var(--secondary-blue);
    color: var(--text-white);
}

.promo-btn-blue:hover {
    background: #004494;
}

.promo-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.promo-divider {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
    .promo-divider {
        width: 2px;
        height: 160px;
    }
}

/* Testimonials Carousel Section */
.testimonials-section {
    max-width: 1525px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    position: relative;
}

.testimonials-header-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    width: 100%;
}

@media (min-width: 640px) {
    .testimonials-header-block {
        align-items: center;
    }
}

.testimonials-sub {
    color: var(--accent);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonials-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-top: 0.25rem;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .testimonials-title {
        font-size: 32px;
        text-align: center;
        max-width: 600px;
    }
}

.testimonials-bar {
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 0.75rem;
    border-radius: var(--radius-full);
}

.testimonial-nav {
    display: none;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

@media (min-width: 640px) {
    .testimonial-nav {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .testimonial-nav {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
    }
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: var(--text-white);
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-nav-btn:hover {
    background: #f9fafb;
}

.testimonial-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.testimonial-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card-item {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: calc(100vw - 3rem);
    border: 1px solid var(--border-gray);
    border-radius: 20px;
    padding: 1.5rem;
    background: var(--text-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: var(--transition);
}

@media (min-width: 640px) {
    .testimonial-card-item {
        width: 362px;
        scroll-snap-align: start;
    }

    .testimonial-card-item:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }
}

.testi-user-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.testi-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.testi-profession {
    font-size: 12px;
    color: #6b7280;
}

.testi-quote {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: 0.5rem;
    flex-grow: 1;
}

@media (min-width: 640px) {
    .testi-quote {
        font-size: 16px;
    }
}

.testimonial-swipe-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    color: #6b7280;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .testimonial-swipe-hint {
        display: none;
    }
}

.testimonial-swipe-hint i {
    color: var(--accent);
}

/* About/Details Blue Header Banner */
.blue-banner-section {
    position: relative;
    width: 100%;
    max-width: 1525px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blue-banner-container {
    background: linear-gradient(180deg, #05101f 0%, #082e6f 50%, #0b51c5 100%);
    border-radius: 0 0 38px 38px;
    padding: 2rem 2.5rem;
    box-shadow: 0 16px 50px rgba(3, 18, 43, 0.18);
}

.blue-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1280px) {
    .blue-banner-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

.blue-banner-left {
    z-index: 20;
    padding: 1.5rem 0;
}

@media (min-width: 1280px) {
    .blue-banner-left {
        max-width: 790px;
        padding: 2.5rem 0;
    }
}

.blue-banner-tag {
    color: var(--yellow);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.blue-banner-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .blue-banner-title {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .blue-banner-title {
        font-size: 50px;
    }
}

.blue-banner-desc {
    margin-top: 1.5rem;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
    .blue-banner-desc {
        font-size: 17px;
    }
}

.blue-banner-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-orange {
    background: var(--accent);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(224, 120, 32, 0.3);
}

.btn-orange:hover {
    background: var(--accent-hover);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.blue-banner-right {
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 1280px) {
    .blue-banner-right {
        width: 390px;
        margin-bottom: -6rem;
    }
}

.blue-banner-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .blue-banner-img {
        height: 380px;
    }
}

@media (min-width: 1280px) {
    .blue-banner-img {
        height: 460px;
    }
}

/* About Page Split Content */
.about-section {
    max-width: 1525px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .about-section {
        padding: 5rem 6%;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1280px) {
    .about-grid {
        grid-template-columns: 1fr 390px;
        gap: 4rem;
    }
}

.about-subtitle {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.about-heading {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-top: 0.75rem;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .about-heading {
        font-size: 36px;
    }
}

.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    margin-top: 1.5rem;
}

.about-aside {
    background: #d8d8d8;
    border-radius: 30px;
    padding: 2rem;
}

.about-quote {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #303030;
}

.about-divider {
    height: 1px;
    background: #9d9d9d;
    margin: 1.75rem 0;
}

.about-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.about-location {
    font-size: 14px;
    color: #5b5b5b;
    margin-top: 0.25rem;
}

.about-pillars {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-pillar-card {
    border: 1px solid #a7a7a7;
    border-radius: 26px;
    background: var(--text-white);
    padding: 2rem;
}

.pillar-icon-box {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--text-white);
}

.bg-pillar-1 {
    background-color: #0b51c5;
}

.bg-pillar-2 {
    background-color: var(--accent);
}

.bg-pillar-3 {
    background-color: var(--yellow);
    color: var(--primary);
}

.about-pillar-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111111;
    margin-top: 1.5rem;
}

.about-pillar-card p {
    font-size: 15px;
    line-height: 1.65;
    color: #5a5a5a;
    margin-top: 0.75rem;
}

/* Contact Page Split Content */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

.contact-sidebar {
    background-color: var(--primary);
    border-radius: 32px;
    padding: 2.5rem;
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 1024px) {
    .contact-sidebar {
        grid-column: span 2;
    }
}

.contact-sidebar h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-box i {
    color: var(--accent);
}

.contact-info-label {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
}

.contact-info-value {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info-value a:hover {
    color: var(--accent);
}

.contact-social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-label {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
}

.contact-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.contact-social-btn:hover {
    background: var(--accent);
}

.contact-form-card {
    background: var(--text-white);
    border-radius: 32px;
    border: 1px solid var(--border-gray);
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1024px) {
    .contact-form-card {
        grid-column: span 3;
    }
}

.contact-form-card h2 {
    font-size: 26px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-full-width {
        grid-column: span 2;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-input {
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 15px;
    color: #1f2937;
    transition: var(--transition);
    outline: none;
}

.contact-input:focus {
    box-shadow: 0 0 0 3px rgba(224, 120, 32, 0.2);
    border-color: var(--accent);
}

textarea.contact-input {
    resize: none;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(90deg, #E07820 0%, #EE862E 50%, #E07820 100%);
    color: var(--text-white);
    font-weight: 500;
    font-size: 16px;
    padding: 0.875rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(224, 120, 32, 0.18);
    transition: var(--transition);
}

.contact-submit-btn:hover {
    box-shadow: 0 6px 25px rgba(224, 120, 32, 0.3);
    opacity: 0.95;
}

/* Details Page & Table Styles */
.details-flex-container {
    max-width: 1525px;
    margin: 2rem auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .details-flex-container {
        padding: 3rem 6%;
    }
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1280px) {
    .details-grid {
        grid-template-columns: 1fr 370px;
        gap: 2.5rem;
    }
}

.pricing-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .pricing-section-title {
        font-size: 30px;
    }
}

.table-card {
    width: 100%;
    overflow: hidden;
    border-radius: 38px;
    border: 1px solid var(--border-dark);
    background: var(--text-white);
    box-shadow: var(--shadow-sm);
    padding-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .table-card {
        max-width: 860px;
        padding-bottom: 2rem;
    }
}

.table-responsive {
    overflow-x: auto;
}

.hardware-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    text-align: left;
}

.hardware-table thead th {
    background-color: #d7d7d7;
    padding: 1.25rem 2rem;
    font-size: 20px;
    font-weight: 500;
    color: #111827;
}

.hardware-table tbody td {
    padding: 1.5rem 2rem;
    font-size: 16px;
    color: #2a2a2a;
    border-bottom: 1px solid var(--border-dark);
}

.hardware-table tbody tr:last-child td {
    border-bottom: none;
}

/* Details and Actions Sidebar */
.details-aside {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1280px) {
    .details-aside {
        width: 370px;
        margin-top: 2rem;
        padding-top: 150px;
        margin-right: 2rem;
        justify-self: end;
    }
}

.btn-gradient-orange {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #E07820 0%, #EE862E 50%, #E07820 100%);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    padding: 0.875rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(224, 120, 32, 0.18);
}

.btn-gradient-orange:hover {
    opacity: 0.95;
}

.btn-outline-orange {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--accent);
    font-size: 16px;
    font-weight: 500;
    padding: 0.875rem;
    border-radius: 10px;
    border: 1px solid #FF8A1F;
}

.btn-outline-orange:hover {
    background: rgba(224, 120, 32, 0.05);
}

.details-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.details-grid-btn {
    text-align: center;
    background: var(--text-white);
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
    padding: 0.875rem;
    border-radius: 10px;
    border: 1px solid var(--primary);
    display: block;
}

.details-grid-btn:hover {
    background: #f1f5f9;
}

.details-grid-btn-wa {
    color: #2C7A61;
    border-color: #2C7A61;
}

.details-grid-btn-wa:hover {
    background: #f0fdf4;
}

/* Shop Page Columns */
.shop-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shop-highlight-box {
    margin-top: 2rem;
    background: var(--bg-gray);
    border-radius: 36px;
    padding: 1.75rem 2.5rem;
    max-width: 860px;
}

.shop-highlight-text {
    font-size: 17px;
    line-height: 1.8;
    color: #3f3f3f;
}

.shop-split-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 860px;
}

@media (min-width: 768px) {
    .shop-split-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shop-vision-card {
    background: var(--text-white);
    border-radius: 32px;
    border: 1px solid var(--border-dark);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
}

.shop-vision-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #11181d;
}

.shop-vision-card p {
    margin-top: 1rem;
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

/* Map Iframe Wrapper */
.shop-map-card {
    border-radius: 30px;
    overflow: hidden;
    background: var(--text-white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 30;
    margin-bottom: 1.25rem;
}

.map-iframe-container {
    height: 308px;
}

@media (min-width: 640px) {
    .map-iframe-container {
        height: 340px;
    }
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Auth Pages (Login / Register / Success) */
.auth-page-body {
    background-color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-family);
    color: #334155;
    justify-content: space-between;
}

.auth-header {
    background-color: var(--primary);
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    color: var(--text-white);
}

.auth-logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auth-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.auth-header-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.auth-card {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 1.875rem;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 28rem;
    text-align: center;
}

.auth-card-wide {
    max-width: 32rem;
    padding: 2.5rem 3rem;
}

.auth-title-block h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.025em;
}

.auth-title-block p {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 0.35rem;
}

.auth-error-alert {
    background-color: var(--danger-light);
    border: 1px solid #fecdd3;
    color: var(--danger);
    padding: 0.875rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.auth-error-alert i {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.auth-form {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.auth-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.auth-label {
    font-size: 0.75rem;
    font-weight: 750;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.auth-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-label-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

.auth-label-link:hover {
    color: var(--accent-hover);
}

.auth-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    background-color: var(--text-white);
    transition: var(--transition);
    outline: none;
}

.auth-input::placeholder {
    color: #cbd5e1;
}

.auth-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(224, 120, 32, 0.15);
}

.auth-select-wrapper {
    position: relative;
}

.auth-select-wrapper select {
    appearance: none;
    cursor: pointer;
    background-color: var(--text-white);
}

.auth-select-arrow {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b;
    display: flex;
    align-items: center;
}

.auth-submit-btn {
    width: 100%;
    padding: 0.875rem;
    background-color: #d97324;
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 6px -1px rgba(217, 115, 36, 0.1), 0 2px 4px -1px rgba(217, 115, 36, 0.06);
    transition: var(--transition);
    text-align: center;
}

.auth-submit-btn:hover {
    background-color: #c6621b;
}

.auth-submit-btn:active {
    transform: scale(0.99);
}

.auth-footer-prompt {
    font-size: 0.875rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 1rem;
}

.auth-footer-prompt a {
    color: var(--accent);
    font-weight: 500;
}

.auth-footer-prompt a:hover {
    color: var(--accent-hover);
}

.auth-footer {
    background-color: var(--primary);
    color: #94a3b8;
    text-align: center;
    padding: 1rem;
    border-top: 1px solid #1e293b;
    font-size: 11px;
    letter-spacing: 0.05em;
}

/* Success Success Block */
.success-success-check {
    width: 96px;
    height: 96px;
    margin: 0 auto 1rem auto;
}

.success-success-title {
    color: var(--success);
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.success-value-box {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto;
    text-align: left;
}

.success-value-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.success-monospace-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: var(--radius-sm);
    text-align: center;
    font-family: monospace;
    font-weight: 500;
    color: #111827;
    background-color: #f9fafb;
    outline: none;
}

/* Responsive adjustment defaults */
@media (max-width: 1024px) {
    .blue-banner-container {
        border-radius: 0;
    }

    .banner-container {
        border-radius: 28px;
    }

    .banner-bg-wrapper {
        border-radius: 28px;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .promo-container {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .about-pillar-card {
        padding: 1.5rem;
    }

    .contact-form-card,
    .contact-sidebar {
        padding: 1.75rem;
        border-radius: 24px;
    }

    .table-card {
        border-radius: 24px;
    }

    .hardware-table thead th {
        font-size: 16px;
        padding: 1rem 1.25rem;
    }

    .hardware-table tbody td {
        font-size: 14px;
        padding: 1rem 1.25rem;
    }
}

/* Rewards Widget */
.rewards-widget {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .rewards-widget {
        right: 1.5rem;
        bottom: 1.5rem;
        gap: 1rem;
    }
}

.rewards-panel {
    width: 300px;
    max-width: calc(100vw - 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rewards-panel.hidden {
    display: none !important;
}

.rewards-panel.flex {
    display: flex !important;
}

.rewards-toggle-btn {
    display: flex;
    height: 3.5rem;
    width: 3.5rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f28a22;
    color: var(--text-white);
    border: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

@media (min-width: 640px) {
    .rewards-toggle-btn {
        height: 4rem;
        width: 4rem;
    }
}

.rewards-toggle-btn:hover {
    transform: scale(1.02);
}

.rewards-toggle-btn:active {
    transform: scale(0.95);
}

.rewards-toggle-btn span {
    margin-top: 2px;
    font-size: 10px;
    font-weight: 600;
}

@media (min-width: 640px) {
    .rewards-toggle-btn span {
        font-size: 12px;
    }
}

.rewards-panel-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 1rem;
    color: var(--text-white);
    padding: 0.75rem 1.25rem;
    border: none;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: filter 0.2s ease;
}

.rewards-panel-btn:hover {
    filter: brightness(1.1);
}

.rewards-panel-btn span.badge {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.rewards-panel-btn span.circle-info {
    display: flex;
    height: 2.5rem;
    width: 2.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-weight: 600;
    flex-shrink: 0;
}

.bg-rewards-green {
    background-color: #3c8d3f;
}

.bg-rewards-light-green {
    background-color: #97cd7a;
}

.bg-rewards-orange {
    background-color: #d7742a;
}

.bg-rewards-blue {
    background-color: #3f5aa8;
}

.bg-rewards-gold {
    background-color: #d1ac5f;
}

/* About Us Page Custom Styles */
.about-main {
    width: 100%;
    overflow: hidden;
}

/* Contact Page Custom Styles */
.contact-main {
    width: 100%;
    overflow: hidden;
}

.about-banner-sec {
    position: relative;
    width: 100%;
    max-width: 1525px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-banner-container {
    position: relative;
    background: linear-gradient(180deg, #05101f 0%, #082e6f 50%, #0b51c5 100%);
    border-radius: 0 0 38px 38px;
    padding: 1.5rem;
    box-shadow: 0 16px 50px rgba(3, 18, 43, 0.18);
}

@media (min-width: 768px) {
    .about-banner-container {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .about-banner-container {
        padding: 2.5rem 6.25rem;
    }
}

.about-banner-row {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1200px) {
    .about-banner-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

.about-banner-col-left {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 1.5rem 0 2rem 0;
}

@media (min-width: 768px) {
    .about-banner-col-left {
        padding: 2rem 0 3rem 0;
    }
}

@media (min-width: 1200px) {
    .about-banner-col-left {
        max-width: 790px;
        padding: 2.5rem 0 4rem 0;
    }
}

.about-banner-label {
    color: #FFC800;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.about-banner-h1 {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-white);
}

@media (min-width: 640px) {
    .about-banner-h1 {
        font-size: 2.625rem;
    }
}

@media (min-width: 1024px) {
    .about-banner-h1 {
        font-size: 3.125rem;
    }
}

.about-banner-p {
    margin-top: 1.5rem;
    max-width: 670px;
    font-size: 0.9375rem;
    line-height: var(--lh-relaxed);
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
    .about-banner-p {
        font-size: 1.0625rem;
    }
}

.about-banner-btn-group {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-banner-btn-primary {
    border-radius: 10px;
    background-color: var(--accent);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-white);
    box-shadow: 0 5px 18px rgba(224, 120, 32, 0.3);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.about-banner-btn-primary:hover {
    background-color: var(--accent-hover);
}

.about-banner-btn-secondary {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-white);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.about-banner-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.about-banner-col-right {
    position: relative;
    z-index: 10;
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .about-banner-col-right {
        width: 390px;
        margin-bottom: -6rem;
    }
}

.about-banner-img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow-2xl);
    display: block;
}

@media (min-width: 640px) {
    .about-banner-img {
        height: 380px;
    }
}

@media (min-width: 1200px) {
    .about-banner-img {
        height: 460px;
    }
}

.about-content-section {
    max-width: 1525px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem 1.5rem;
}

@media (min-width: 768px) {
    .about-content-section {
        padding: 5rem 1.5rem 7rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .about-content-section {
        padding: 5rem 6.25rem 7rem 6.25rem;
    }
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1200px) {
    .about-content-grid {
        grid-template-columns: minmax(0, 1fr) 390px;
        gap: 4rem;
    }
}

.about-label {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.about-h2 {
    margin-top: 0.75rem;
    max-width: 750px;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: var(--lh-tight);
    color: #111111;
}

@media (min-width: 640px) {
    .about-h2 {
        font-size: 2.25rem;
    }
}

.about-p {
    margin-top: 1.5rem;
    max-width: 800px;
    font-size: 0.9375rem;
    line-height: 2;
    color: #555555;
}

.about-aside {
    border-radius: 30px;
    background-color: #d8d8d8;
    padding: 1.75rem 2rem;
}

@media (min-width: 640px) {
    .about-aside {
        padding: 2.25rem 2.5rem;
    }
}

.about-aside-quote {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 2;
    color: #303030;
    margin: 0;
}

@media (min-width: 640px) {
    .about-aside-quote {
        font-size: 1.125rem;
    }
}

.about-divider {
    margin-top: 1.75rem;
    height: 1px;
    width: 100%;
    background-color: #9d9d9d;
}

.about-aside-author {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

.about-aside-sub {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #5b5b5b;
    margin-bottom: 0;
}

.about-vision-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .about-vision-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1200px) {
    .about-vision-grid {
        margin-top: 4rem;
    }
}

.about-vision-box {
    border-radius: 26px;
    border: 1px solid #a7a7a7;
    background-color: var(--text-white);
    padding: 1.75rem;
}

@media (min-width: 640px) {
    .about-vision-box {
        padding: 2rem;
    }
}

.about-vision-icon-wrapper {
    display: flex;
    height: 48px;
    width: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--text-white);
}

.about-vision-icon-wrapper.bg-blue {
    background-color: #0b51c5;
}

.about-vision-icon-wrapper.bg-orange {
    background-color: var(--accent);
}

.about-vision-icon-wrapper.bg-gold {
    background-color: #FFC800;
    color: var(--primary);
}

.about-vision-title {
    margin-top: 1.5rem;
    font-size: 1.375rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0;
}

.about-vision-desc {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #5a5a5a;
    margin-bottom: 0;
}

/* Contact Us Page Custom Styles */
.contact-main {
    position: relative;
    z-index: 10;
    padding: 2rem 1.5rem 5rem 1.5rem;
    max-width: 1525px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-main {
        padding: 2rem 6.25rem 5rem 6.25rem;
    }
}

.contact-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-header {
        text-align: left;
    }
}

.contact-header h1 {
    font-size: 2.375rem;
    font-weight: 600;
    color: #111111;
    letter-spacing: -0.02em;
    margin: 0;
}

@media (min-width: 640px) {
    .contact-header h1 {
        font-size: 2.75rem;
    }
}

.contact-header h1 span {
    color: var(--accent);
}

.contact-header p {
    font-size: 1.0625rem;
    color: #4b4b4b;
    max-width: 42rem;
    margin: 0.5rem auto 0 auto;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .contact-header p {
        margin-left: 0;
        margin-right: 0;
    }
}

.contact-container-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-container-row {
        grid-template-columns: repeat(5, 1fr);
    }
}

.contact-info-col {
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-info-col {
        grid-column: span 2;
    }
}

.contact-info-card {
    background-color: var(--primary);
    border-radius: 32px;
    padding: 2rem;
    color: var(--text-white);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .contact-info-card {
        padding: 2.5rem;
    }
}

.contact-info-h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: var(--accent);
    font-size: 1rem;
}

.contact-info-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

.contact-info-val {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-info-val a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-val a:hover {
    color: var(--accent);
}

.contact-social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-prompt {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.contact-form-col {
    background-color: var(--text-white);
    border-radius: 32px;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .contact-form-col {
        grid-column: span 3;
        padding: 2.5rem;
    }
}

.contact-form-h2 {
    font-size: 1.625rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.contact-form-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-form-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .contact-form-field.full-width {
        grid-column: span 2;
    }
}

.contact-form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.contact-form-input {
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: #1f2937;
    box-sizing: border-box;
    transition: var(--transition);
    outline: none;
}

.contact-form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(224, 120, 32, 0.2);
}

textarea.contact-form-input {
    resize: none;
}

.contact-form-btn-wrapper {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .contact-form-btn-wrapper {
        grid-column: span 2;
    }
}

.contact-form-submit-btn {
    width: 100%;
    background: linear-gradient(to right, #E07820, #EE862E, #E07820);
    color: var(--text-white);
    border: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(224, 120, 32, 0.18);
    transition: var(--transition);
}

.contact-form-submit-btn:hover {
    box-shadow: 0 6px 25px rgba(224, 120, 32, 0.3);
    transform: translateY(-1px);
}

.contact-form-submit-btn:active {
    transform: translateY(0);
}

/* Details Page Custom Styles */
.details-main {
    position: relative;
    z-index: 10;
    padding-bottom: 5rem;
}

.details-banner-sec {
    position: relative;
    width: 100%;
    max-width: 1525px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.details-banner-container {
    position: relative;
    background: linear-gradient(180deg, #05101f 0%, #082e6f 50%, #0b51c5 100%);
    border-radius: 0 0 38px 38px;
    padding: 1.5rem;
    box-shadow: 0 16px 50px rgba(3, 18, 43, 0.18);
}

@media (min-width: 768px) {
    .details-banner-container {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .details-banner-container {
        padding: 2.5rem 6.25rem;
    }
}

.details-banner-row {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1200px) {
    .details-banner-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

.details-banner-col-left {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 1.5rem 0 2rem 0;
}

@media (min-width: 768px) {
    .details-banner-col-left {
        padding: 2rem 0 3rem 0;
    }
}

@media (min-width: 1200px) {
    .details-banner-col-left {
        max-width: 860px;
        padding: 2.5rem 0 4rem 0;
    }
}

.details-banner-h1 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-white);
    margin: 0;
    max-width: 620px;
}

@media (min-width: 640px) {
    .details-banner-h1 {
        font-size: 2.125rem;
    }
}

@media (min-width: 1024px) {
    .details-banner-h1 {
        font-size: 2.5rem;
    }
}

.details-banner-p {
    margin-top: 1.25rem;
    max-width: 620px;
    font-size: 0.9375rem;
    line-height: var(--lh-relaxed);
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
    .details-banner-p {
        font-size: 1rem;
    }
}

.details-banner-loc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.details-banner-loc i {
    color: #FFC800;
    font-size: 1.125rem;
}

.details-banner-loc span {
    color: #FFC800;
    font-size: 1rem;
    font-weight: 500;
}

.details-banner-col-right {
    position: relative;
    z-index: 10;
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .details-banner-col-right {
        width: 370px;
        margin-bottom: -6rem;
    }
}

.details-banner-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 38px;
    box-shadow: var(--shadow-2xl);
    display: block;
}

@media (min-width: 640px) {
    .details-banner-img {
        max-height: 520px;
    }
}

.details-content-section {
    max-width: 1525px;
    margin: 2.5rem auto 0 auto;
    padding: 0 1.5rem 6.25rem 1.5rem;
}

@media (min-width: 768px) {
    .details-content-section {
        margin-top: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .details-content-section {
        padding: 0 6.25rem 6.25rem 6.25rem;
    }
}

.details-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1200px) {
    .details-content-grid {
        grid-template-columns: minmax(0, 1fr) 370px;
        gap: 2.5rem;
    }
}

.details-table-col {
    width: 100%;
}

.details-table-col h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

@media (min-width: 640px) {
    .details-table-col h2 {
        font-size: 1.875rem;
    }
}

.details-table-card {
    width: 100%;
    max-width: 860px;
    overflow: hidden;
    border-radius: 38px;
    border: 1px solid #8b8b8b;
    background-color: var(--text-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .details-table-card {
        padding-bottom: 2rem;
    }
}

.details-table-card-wrapper {
    overflow-x: auto;
}

.details-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    text-align: left;
}

.details-table-thead {
    background-color: #d7d7d7;
}

.details-table th {
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #111111;
    border-bottom: none;
}

.details-table td {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    color: #2a2a2a;
    border-bottom: 1px solid #8b8b8b;
}

.details-table tbody tr:last-child td {
    border-bottom: none;
}

.details-sidebar {
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .details-sidebar {
        width: 370px;
        margin-top: 0.5rem;
        padding-top: 100px;
        justify-self: end;
        margin-right: 2rem;
    }
}

.details-sidebar-container {
    position: relative;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(to right, #E07820, #EE862E, #E07820);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(224, 120, 32, 0.18);
    text-decoration: none;
    transition: var(--transition);
}

.details-btn-primary:hover {
    box-shadow: 0 6px 25px rgba(224, 120, 32, 0.3);
    transform: translateY(-1px);
}

.details-btn-secondary {
    display: block;
    width: 100%;
    text-align: center;
    background-color: transparent;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #FF8A1F;
    text-decoration: none;
    transition: var(--transition);
    box-sizing: border-box;
}

.details-btn-secondary:hover {
    background-color: rgba(249, 115, 22, 0.05);
}

.details-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.details-btn-phone {
    text-align: center;
    background-color: var(--text-white);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.details-btn-phone:hover {
    background-color: rgba(11, 21, 36, 0.05);
}

.details-btn-whatsapp {
    text-align: center;
    background-color: var(--text-white);
    color: #2C7A61;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #2C7A61;
    text-decoration: none;
    transition: var(--transition);
}

.details-btn-whatsapp:hover {
    background-color: rgba(44, 122, 97, 0.05);
}

/* Shop Details Page Custom Styles */
.shop-main {
    position: relative;
    z-index: 10;
    padding-bottom: 5rem;
}

.shop-content-section {
    max-width: 1525px;
    margin: 2.5rem auto 0 auto;
    padding: 0 1.5rem 5rem 1.5rem;
}

@media (min-width: 768px) {
    .shop-content-section {
        margin-top: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .shop-content-section {
        padding: 0 6.25rem 5rem 6.25rem;
    }
}

.shop-text-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shop-text-p {
    font-size: 1.0625rem;
    line-height: var(--lh-relaxed);
    color: #4b4b4b;
    max-width: 900px;
    margin: 0;
}

@media (min-width: 640px) {
    .shop-text-p {
        font-size: 1.125rem;
    }
}

.shop-highlight-box {
    margin-top: 2rem;
    background-color: #dcdcdc;
    border-radius: 36px;
    padding: 1.75rem 1.5rem;
    max-width: 860px;
}

@media (min-width: 640px) {
    .shop-highlight-box {
        padding: 2rem 2.5rem;
    }
}

.shop-highlight-text {
    font-size: 1.0625rem;
    line-height: var(--lh-relaxed);
    color: #3f3f3f;
    margin: 0;
}

@media (min-width: 640px) {
    .shop-highlight-text {
        font-size: 1.125rem;
    }
}

.shop-vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 860px;
}

@media (min-width: 768px) {
    .shop-vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shop-card {
    background-color: var(--text-white);
    border-radius: 32px;
    border: 1px solid #b7b7b7;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
    .shop-card {
        padding: 2rem;
    }
}

.shop-card-h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111111;
    margin-top: 0;
    margin-bottom: 1rem;
}

.shop-card-p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #4b4b4b;
    margin: 0;
}

.shop-sidebar {
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .shop-sidebar {
        width: 370px;
        margin-top: 0.5rem;
        padding-top: 100px;
        justify-self: end;
        margin-right: 2rem;
    }
}

.shop-map-card {
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--text-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 30;
}

.shop-map-wrapper {
    height: 308px;
}

@media (min-width: 640px) {
    .shop-map-wrapper {
        height: 340px;
    }
}

/* Redesigned Rewards Popup Menu & Sub-items styling */
.rewards-btn-trigger {
    background: linear-gradient(to bottom, #F2944D, #E07A24);
    color: var(--text-white);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-white);
    box-shadow: var(--shadow-lg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rewards-btn-trigger:hover {
    transform: scale(1.05);
}

.rewards-btn-trigger:focus {
    outline: none;
}

.rewards-btn-trigger.is-active {
    box-shadow: 0 0 0 6px rgba(224, 122, 36, 0.25);
}

.rewards-btn-trigger.is-active .rewards-icon {
    transform: rotate(15deg) scale(1.05);
}

.rewards-icon {
    transition: transform 0.3s ease;
}

.rewards-popup-menu {
    position: absolute;
    bottom: 6rem;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.reward-item {
    opacity: 0;
    transform: translateY(10px) scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background-color 0.2s ease;
    pointer-events: none;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--text-white);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.reward-item:focus {
    outline: none;
}

.rewards-popup-menu.is-open .reward-item {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.rewards-popup-menu.is-open .reward-item:nth-child(1) {
    transition-delay: 30ms;
}

.rewards-popup-menu.is-open .reward-item:nth-child(2) {
    transition-delay: 70ms;
}

.rewards-popup-menu.is-open .reward-item:nth-child(3) {
    transition-delay: 110ms;
}

.rewards-popup-menu.is-open .reward-item:nth-child(4) {
    transition-delay: 150ms;
}

.rewards-popup-menu.is-open .reward-item:nth-child(5) {
    transition-delay: 190ms;
}

.rewards-popup-menu.is-open .reward-item:hover {
    transform: translateY(0) scale(1.08);
}

.reward-item.item-register {
    background-color: #2F6F4E;
}

.reward-item.item-register:hover {
    background-color: #25593E;
    box-shadow: 0 8px 18px rgba(47, 111, 78, 0.5);
}

.reward-item.item-app {
    background-color: #2D6CA3;
}

.reward-item.item-app:hover {
    background-color: #235682;
    box-shadow: 0 8px 18px rgba(45, 108, 163, 0.5);
}

.reward-item.item-land {
    background-color: #D9731C;
}

.reward-item.item-land:hover {
    background-color: #BD5F12;
    box-shadow: 0 8px 18px rgba(217, 115, 28, 0.5);
}

.reward-item.item-buy {
    background-color: #B23A48;
}

.reward-item.item-buy:hover {
    background-color: #962E3A;
    box-shadow: 0 8px 18px rgba(178, 58, 72, 0.5);
}

.reward-item i {
    font-size: 1.25rem;
}

.reward-item.item-buyer {
    background-color: #C2932B;
    color: #0B1321;
}

.reward-item.item-buyer:hover {
    background-color: #A87A1E;
    box-shadow: 0 8px 18px rgba(194, 147, 43, 0.5);
}

.reward-item-tooltip {
    pointer-events: none;
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    white-space: nowrap;
    border-radius: 4px;
    background-color: #0B1321;
    padding: 0.375rem 0.75rem;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-white);
    opacity: 0;
    box-shadow: var(--shadow-md);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.reward-item:hover .reward-item-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Dynamic Positioning Utility Classes mapped from JS updates */
.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.bottom-6 {
    bottom: 1.5rem;
}

.right-10 {
    right: 2.5rem;
}

.z-30 {
    z-index: 30;
}

.transition-all {
    transition-property: all;
}

.duration-300 {
    transition-duration: 300ms;
}

.-translate-y-1\/2 {
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .md\:right-24 {
        right: 6rem;
    }
}

/* ===== Contact Page – Form & Details Section ===== */
.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Two-column grid for contact section */
.grid-cols-1 {
    grid-template-columns: 1fr;
}

.gap-10 {
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Details Card */
.bg-gray-50 {
    background-color: #f9fafb;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

/* Contact Form Card */
.bg-white {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

/* Card headings */
.text-2xl {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

/* Info row items */
.space-y-4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.space-y-4 p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #374151;
}

.space-y-4 span {
    font-weight: 600;
    color: #111827;
    min-width: 70px;
}

.space-y-4 a {
    color: #374151;
    transition: color 0.2s ease;
}

.space-y-4 a:hover {
    color: var(--accent);
}

.text-blue-600 {
    color: var(--secondary-blue) !important;
}

.text-blue-600:hover {
    text-decoration: underline;
    color: #0047c0 !important;
}

/* Form layout */
.space-y-5 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Form labels */
.text-sm {
    font-size: 0.875rem;
}

.font-medium {
    font-weight: 500;
}

.text-gray-700 {
    color: #374151;
}

.mb-1 {
    margin-bottom: 0.25rem;
    display: block;
}

/* Form inputs & textarea */
.w-full {
    width: 100%;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.border {
    border: 1px solid #d1d5db;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.rounded-md {
    border-radius: 8px;
}

.outline-none {
    outline: none;
}

.transition-colors {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Shared input/textarea style */
.border.border-gray-300.rounded-md,
input.border,
textarea.border {
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1f2937;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: block;
}

input.border:focus,
textarea.border:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(224, 120, 32, 0.15);
}

textarea.border {
    resize: vertical;
}

/* Submit button */
.bg-blue-600 {
    width: 100%;
    background: linear-gradient(90deg, #E07820 0%, #EE862E 50%, #E07820 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(224, 120, 32, 0.2);
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
    display: block;
    text-align: center;
}

.bg-blue-600:hover {
    opacity: 0.93;
    box-shadow: 0 6px 24px rgba(224, 120, 32, 0.3);
}

@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}