:root {
    --primary: #0f2942;
    --primary-dark: #0a1e30;
    --primary-light: #1a4d7a;
    --accent: #047857;
    --accent-dark: #065f46;
    --accent-light: #059669;
    --gold: #d97706;
    --gold-dark: #b45309;
    --gradient-primary: linear-gradient(135deg, #0f2942 0%, #1a4d7a 100%);
    --gradient-accent: linear-gradient(135deg, #047857 0%, #059669 100%);
    --gradient-gold: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --neutral-dark: #1f2937;
    --neutral-gray: #6b7280;
    --neutral-light: #f9fafb;
    --neutral-border: #e5e7eb;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15), 0 4px 8px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2), 0 6px 12px rgba(0,0,0,0.1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-primary);
    color: var(--neutral-dark);
    line-height: 1.7;
    background: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1400px;
    }
}

.section {
    padding: 50px 0;
}

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

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

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-header p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--neutral-gray);
    max-width: 700px;
    margin: 24px auto 0;
}

.site-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}

.navbar {
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--neutral-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    font-size: 14px;
    white-space: nowrap;
}

/* Spanish-specific navigation styling */
body[data-lang="es"] .nav-menu {
    gap: 8px;
}

body[data-lang="es"] .nav-menu a {
    font-size: 11.5px;
    letter-spacing: 0.1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: 8px;
    border: 1px solid var(--neutral-border);
    list-style: none;
    min-width: 240px;
    padding: 12px 0;
    margin-top: 12px;
    animation: fadeInDown 0.25s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-menu,
.dropdown.is-open .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    transition: all 0.2s ease;
    text-transform: none;
    font-size: 15px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--neutral-light);
    color: var(--primary);
    padding-left: 28px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.language-switcher {
    position: relative;
}

.lang-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--neutral-light);
    border: 2px solid var(--neutral-border);
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--neutral-dark);
    transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: 8px;
    border: 1px solid var(--neutral-border);
    min-width: 220px;
    max-height: 420px;
    overflow-y: auto;
    padding: 10px 0;
    list-style: none;
    z-index: 1000;
    animation: fadeInDown 0.25s ease;
}

.language-switcher.active .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-menu li {
    padding: 0;
}

.lang-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--neutral-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 15px;
    font-weight: 500;
}

.lang-dropdown-menu a:hover {
    background: var(--neutral-light);
    color: var(--primary);
    padding-left: 24px;
}

.lang-dropdown-menu a.active {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.5);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(15, 41, 66, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 41, 66, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 16px;
}

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0 40px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/cargo_ship_container_695f7df6.jpg') center/cover;
    opacity: 0.35;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 41, 66, 0.85) 0%, rgba(15, 41, 66, 0.75) 50%, rgba(4, 120, 87, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 28px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    margin-bottom: 48px;
    opacity: 1;
    line-height: 1.7;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 3px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-section {
    background: var(--neutral-light);
    padding: 30px 0;
    border-top: 4px solid var(--gold);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.trust-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--primary-dark);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(15, 41, 66, 0.2);
    border: 2px solid rgba(217, 119, 6, 0.15);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.08), transparent);
    transition: left 0.6s ease;
}

.trust-item:hover::before {
    left: 100%;
}

.trust-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(217, 119, 6, 0.2);
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #16344d 100%);
}

.trust-item:hover h3 {
    color: var(--gold);
}

.trust-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.trust-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gold);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.trust-item:hover .trust-icon {
    transform: scale(1.12);
    filter: drop-shadow(0 8px 16px rgba(217, 119, 6, 0.35));
}

.trust-item h3 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 1.4rem;
    font-weight: 700;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 500;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 36px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 2px solid var(--neutral-border);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.product-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: var(--neutral-light);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
}

.product-info {
    padding: 28px;
}

.product-category {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.product-info h3 {
    color: var(--primary-dark);
    margin: 14px 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.product-info p {
    color: var(--neutral-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 2px solid var(--neutral-light);
}

.moq {
    color: var(--neutral-gray);
    font-size: 14px;
    font-weight: 600;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 36px;
}

.testimonial-card {
    background: var(--white);
    padding: 44px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 6px solid var(--gold);
    border: 2px solid var(--neutral-border);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 22px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.8;
    color: var(--neutral-dark);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.testimonial-author strong {
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--neutral-gray);
    font-size: 14px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 36px;
}

.blog-card {
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid var(--neutral-border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.blog-meta .category {
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.blog-meta .date {
    color: var(--neutral-gray);
    font-size: 14px;
}

.blog-card h3 a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.35rem;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--gold);
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 14px;
    color: var(--gold);
}

.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 24px;
    font-weight: 800;
}

.cta-content p {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    margin-bottom: 48px;
    opacity: 0.95;
}

.page-header {
    background: linear-gradient(135deg, var(--neutral-light) 0%, #e5e7eb 100%);
    padding: 100px 0;
    text-align: center;
    border-bottom: 4px solid var(--gold);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form, .quote-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid var(--neutral-border);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

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

.alert {
    padding: 18px 24px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 600;
    border-left: 6px solid;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-color: #047857;
}

.site-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 24px;
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 6px;
}

.trust-badges {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start; /* or center if you want */
}

.badge-strip {
    width: 230px;               /* adjust as needed */
    max-width: 100%;            /* prevents overflow */
    object-fit: contain;
    display: block;
    border-radius: 12px;
    padding: 6px;
    background: #ffffff0f;      /* subtle translucent background */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.badge {
    background: var(--accent);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(217, 119, 6, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    opacity: 0.8;
}

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

.section-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .logo img {
        height: 100px;
    }
    
    .nav-menu {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .logo img {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .logo img {
        height: 70px;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-grid,
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== Mobile nav: show when .active ===== */
@media (max-width: 768px) {
    /* keep existing rules (.nav-menu { display: none; } etc) */

    /* when active, show the nav as a full-width vertical panel */
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        justify-content: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--neutral-border);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        padding: 12px 20px;
        z-index: 9999;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    /* style nav links in mobile panel */
    .nav-menu.active li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    .nav-menu.active a {
        display: block;
        padding: 12px 6px;
        font-size: 15px;
        color: var(--neutral-dark);
        text-transform: none;
        font-weight: 600;
    }

    /* Make dropdown sub-menu items readable on mobile */
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
        display: none;
    }

    /* show dropdown children when parent gets .is-open-mobile */
    .nav-menu .dropdown.is-open-mobile > .dropdown-menu {
        display: block;
        padding-left: 16px;
    }

    /* ensure hamburger on top if overlays exist */
    .nav-toggle {
        z-index: 10001;
    }
}


/* Why Buy From Us Page */
.why-buy-intro {
    padding: 60px 0;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 24px;
    color: var(--primary);
}

.intro-content .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.reason-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.reason-icon svg {
    color: var(--white);
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.reason-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-primary);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.trust-numbers {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 80px 0;
}

.trust-numbers .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 60px;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Payment Terms Page */
.payment-terms-section {
    padding: 80px 0;
}

.payment-content {
    max-width: 900px;
    margin: 0 auto;
}

.payment-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 60px 48px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.highlight-icon svg {
    color: var(--white);
}

.payment-highlight h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: var(--white);
}

.payment-highlight .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.95;
    line-height: 1.7;
}

.payment-details {
    margin-bottom: 40px;
}

.payment-details > h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 40px;
    color: var(--primary);
    text-align: center;
}

.policy-section {
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
}

.policy-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
}

.policy-section ul li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--text-primary);
    line-height: 1.6;
}

.policy-section ul li::before {
    content: "•";
    position: absolute;
    left: 12px;
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
}

.payment-note {
    background: #fff9e6;
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 36px;
    margin-top: 40px;
}

.payment-note h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.payment-note ul {
    list-style: none;
    padding: 0;
}

.payment-note ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-primary);
}

.payment-note ul li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-highlight {
        padding: 40px 28px;
    }
    
    .policy-section {
        padding: 24px;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-grid {
        gap: 24px;
    }
    
    .contact-info-section {
        text-align: center;
    }
    
    .contact-info-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-details {
        padding: 20px 0;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .map-section {
        margin-top: 12px !important;
    }
    
    .map-responsive {
        margin-top: 10px !important;
    }
    
    .form-row {
        gap: 16px;
    }
    
    .contact-form, .quote-form {
        gap: 18px;
    }
    
    .btn {
        max-width: none !important;
        width: 100%;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .quote-section {
        padding: 40px 0;
    }
    
    .alert {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo img {
        height: 60px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-info-section h2,
    .contact-form-section h2,
    .quote-section h2 {
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Media Gallery Styles */
.media-gallery {
    background: var(--white);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.media-tile {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.media-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.media-tile:hover .media-image img {
    transform: scale(1.05);
}

.media-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.media-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.media-content {
    padding: 25px;
}

.media-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.media-content p {
    color: var(--text-dark);
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    line-height: 1.7;
    margin: 0;
}

/* Sticky Floating Quote Button - Always visible for all languages */
.floating-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    display: block;
    max-width: 200px;
    text-align: center;
}

.floating-quote-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.5);
    background: var(--gold-dark);
}

/* Hide header quote button completely to prevent overflow in any language */
.header-actions .btn-primary {
    display: none;
}

@media (max-width: 600px) {
    .floating-quote-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .media-image {
        height: 220px;
    }
    
    .media-content {
        padding: 20px;
    }
}
