/* ============================================
   Miyuki Java Trading - Custom Styles
   Primary Color: #0d6efd
   ============================================ */

:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --primary-light: #3d8bfd;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --dark-color: #212529;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Navigation Styles
   ============================================ */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--white) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-brand:hover {
    color: var(--primary-dark) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color) !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .d-flex {
    position: relative;
    z-index: 10;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="rgba(255,255,255,0.05)" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"></path><path fill="rgba(255,255,255,0.05)" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5"></path><path fill="rgba(255,255,255,0.05)" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"></path></svg>');
    background-size: cover;
    background-position: top;
    pointer-events: none;
    z-index: 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-section .btn-hero {
    animation: fadeInUp 1s ease 0.4s backwards;
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ============================================
   Section Common Styles
   ============================================ */
section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title .title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background-color: var(--white);
}

.about-section .about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-section .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-section .about-image:hover img {
    transform: scale(1.05);
}

.about-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-info-item .icon-box {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-info-item .icon-box i,
.about-info-item .icon-box svg {
    color: var(--white);
    font-size: 1.2rem;
}

.about-info-item .info-text h5 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
    font-weight: 600;
}

.about-info-item .info-text p {
    margin-bottom: 0;
    color: var(--secondary-color);
}

.import-license {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.import-license h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Gallery */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 150px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed !important;
    z-index: 99999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    animation: zoomIn 0.3s ease;
    display: block;
    position: relative;
    z-index: 99998;
    pointer-events: auto;
}

/* Loading spinner for lightbox */
.lightbox.loading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    z-index: 100000;
    pointer-events: auto;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* ============================================
   Owner Modal
   ============================================ */
.owner-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.owner-modal .modal-header {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.owner-modal .modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.owner-modal .btn-close {
    filter: brightness(0) invert(1);
}

.owner-modal .modal-body {
    padding: 2rem;
}

.owner-photo-container {
    position: relative;
    display: inline-block;
}

.owner-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.owner-photo-placeholder {
    width: 200px;
    height: 200px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 0 auto;
}

.owner-modal .detail-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.owner-modal .detail-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.owner-modal .career-timeline {
    position: relative;
    padding-left: 1rem;
}

.owner-modal .career-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.owner-modal .career-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.owner-modal .career-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.owner-modal .career-year {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.owner-modal .career-position {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.owner-modal .career-description {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.owner-modal .modal-footer {
    padding: 1.5rem 2rem;
    background-color: var(--light-bg);
    border-radius: 0 0 20px 20px;
}

/* Owner clickable item hover effect */
.owner-clickable {
    transition: all 0.3s ease;
    position: relative;
}

.owner-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.owner-clickable::after {
    content: '\f4fb';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.owner-clickable:hover::after {
    opacity: 1;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    background-color: var(--light-bg);
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info .brand {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.product-info p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-sku {
    display: inline-flex;
    align-items: center;
    background: var(--light-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.product-sku i,
.product-sku svg {
    margin-right: 5px;
}

/* ============================================
   Partners Section
   ============================================ */
.partners-section {
    background-color: var(--white);
}

.partners-section .section-title {
    margin-bottom: 4rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 100%;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.15);
}

.partner-logo img {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ============================================
   Video Section
   ============================================ */
.video-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.video-section .section-title h2,
.video-section .section-title p {
    color: var(--white);
}

.video-section .section-title p {
    opacity: 0.9;
}

.video-section .title-underline {
    background: var(--white);
}

.video-container {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    position: relative;
    /* Fixed height for consistency */
    height: 300px;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
    /* Video fills container precisely */
}

.video-caption {
    background: var(--white);
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-caption h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.video-caption p {
    color: var(--secondary-color);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive for video */
@media (max-width: 991px) {
    .video-container {
        height: 280px;
    }

    .video-caption h5 {
        font-size: 1rem;
    }

    .video-caption p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .video-container {
        height: 220px;
    }

    .video-caption {
        padding: 1rem;
    }

    .video-caption h5 {
        font-size: 0.95rem;
    }

    .video-caption p {
        font-size: 0.8rem;
    }
}

/* ============================================
   Promotion Section
   ============================================ */
.promotion-section {
    background-color: var(--light-bg);
    position: relative;
    padding-bottom: 80px;
    
}

.promotion-section .section-title h2 {
    color: #e74c3c;
}

.promotion-section .title-underline {
    background: #e74c3c;
}

/* Modern Promo Card */
.promo-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.12);
    transition: all 0.3s ease;
}

.promo-card-modern:hover {
    box-shadow: 0 15px 50px rgba(231, 76, 60, 0.18);
}

.promo-image-full {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.promo-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-badge-float {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #e74c3c;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.promo-details {
    padding: 2rem;
}

.promo-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.promo-text {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.promo-text strong {
    color: #e74c3c;
    font-weight: 700;
}

.promo-features {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.feature-item i {
    color: #25D366;
    font-size: 1.1rem;
}

.promo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.btn-promo-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-promo-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.btn-promo-modern-text {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-promo-modern-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.btn-promo-modern-text i {
    font-size: 1.1rem;
}

.promo-expiry {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.promo-expiry i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 767px) {
    .promo-image-full {
        height: 250px;
    }

    .promo-details {
        padding: 1.5rem;
    }

    .promo-title {
        font-size: 1.4rem;
    }

    .promo-text {
        font-size: 0.95rem;
    }

    .promo-features {
        flex-direction: column;
        gap: 10px;
    }

    .promo-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-promo-modern {
        width: 100%;
        justify-content: center;
    }

    .btn-promo-modern-text {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .promo-image-full {
        height: 200px;
    }

    .promo-title {
        font-size: 1.25rem;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .banner-image-wrapper {
        height: 450px;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-description {
        font-size: 1.05rem;
    }

    .promo-highlights {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .promotion-section {
        padding-bottom: 60px;
    }

    .banner-image-wrapper {
        height: 500px;
    }

    .banner-content-main {
        width: 95%;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .promo-badges {
        gap: 10px;
    }

    .badge-main {
        padding: 8px 18px;
        font-size: 0.9rem;
    }

    .highlight-item {
        font-size: 1rem;
    }

    .btn-promo-large {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .banner-image-wrapper {
        height: 550px;
    }

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

    .banner-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background-color: var(--light-bg);
}

.contact-info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon-box {
    width: 45px;
    height: 45px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item .icon-box i,
.contact-item .icon-box svg {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-item .contact-text h5 {
    margin-bottom: 0.25rem;
    color: var(--dark-color);
    font-weight: 600;
}

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

.contact-item .contact-text a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item .contact-text a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Order Section
   ============================================ */
.order-section {
    background: linear-gradient(135deg, #212529 0%, #495057 100%);
    color: var(--white);
}

.order-section .section-title h2,
.order-section .section-title p {
    color: var(--white);
}

.order-section .title-underline {
    background: var(--white);
}

.order-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.order-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.order-card .order-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.order-card .order-icon i,
.order-card .order-icon svg {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.order-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.order-card p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i,
.btn-whatsapp svg {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* ============================================
   Footer Styles
   ============================================ */
.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand:hover {
    color: var(--primary-color) !important;
}

.footer p {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

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

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    margin-bottom: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .about-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .order-card {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-light-custom {
    background-color: var(--light-bg) !important;
}

.rounded-custom {
    border-radius: 15px;
}

.shadow-custom {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
