/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    line-height: 1.6;
    color: #113c3a;
    background-color: #e6eae3;
}

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

/* Header */
.header {
    background-color: #113c3a;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav {
    margin-left: auto;
}


/* Hamburger Menu */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 0px;
    transition: all 0.3s ease;
    order: -1;
}

.hamburger-menu:hover {
    background-color: rgba(234, 180, 30, 0.1);
}

.hamburger-icon {
    width: 24px;
    height: 24px;
    stroke: #eab41e;
    stroke-width: 2;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: #113c3a;
    padding: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(234, 180, 30, 0.1);
}

.close-icon {
    width: 24px;
    height: 24px;
    stroke: #eab41e;
    stroke-width: 2;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

.mobile-nav-link {
    color: #eab41e;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 20px;
    border-radius: 0px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover {
    background-color: rgba(234, 180, 30, 0.1);
    border-left-color: #eab41e;
    transform: translateX(5px);
}

.logo {
    height: 70px;
    width: auto;
}

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

.nav-link {
    color: #eab41e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #c3e8c9;
}

.nav-cta {
    background-color: #eab41e;
    color: #113c3a !important;
    padding: 8px 16px;
    border-radius: 0px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: #f0f18e;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-large {
    background: linear-gradient(135deg, #113c3a 0%, #1a5450 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Background image removed from hero section */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #eab41e;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: #c3e8c9;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #eab41e;
    color: #113c3a;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #f0f18e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 180, 30, 0.3);
}

.btn-secondary {
    background-color: #eab41e;
    color: #113c3a;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #f0f18e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 180, 30, 0.3);
}

/* Container Needs Section */
.container-needs-section {
    position: relative;
    padding: 120px 0 160px;
    background-image: url('images/boxxy_bg07.svg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.container-needs-content {
    max-width: 600px;
    text-align: left;
}

.container-needs-title {
    font-size: 3rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.container-needs-description {
    font-size: 1.25rem;
    color: #113c3a;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.container-needs-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #113c3a;
    color: #eab41e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.container-needs-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(17, 60, 58, 0.3);
}

.button-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background-color: #e6eae3;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #113c3a;
    opacity: 0.8;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(17, 60, 58, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(17, 60, 58, 0.15);
}

.service-card:hover .icon-large {
    stroke: #eab41e !important;
}

.icon-large {
    transition: stroke 0.3s ease;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.service-icon .icon-large {
    color: #113c3a;
    width: 48px;
    height: 48px;
}

.minilager-icon,
.shipping-icon {
    width: 80px;
    height: 80px;
}

.minilager-icon .icon-image,
.shipping-icon .icon-image {
    width: 80px;
    height: 80px;
    display: block;
    transition: opacity 0.3s ease;
}

.minilager-icon .icon-image-hover,
.shipping-icon .icon-image-hover {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .minilager-icon .icon-image,
.service-card:hover .shipping-icon .icon-image {
    opacity: 0;
}

.service-card:hover .minilager-icon .icon-image-hover,
.service-card:hover .shipping-icon .icon-image-hover {
    opacity: 1;
}

.icon-large {
    width: 40px;
    height: 40px;
    stroke: #113c3a;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 15px;
}

.service-card p {
    color: #113c3a;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    color: #eab41e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid #eab41e;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #113c3a;
    border-color: #113c3a;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #c3e8c9;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    stroke: #eab41e;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 8px;
}

.feature-item p {
    color: #113c3a;
    opacity: 0.8;
    line-height: 1.6;
}

.about-image {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(17, 60, 58, 0.15);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #113c3a;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #eab41e;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: #eab41e;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item strong {
    color: #eab41e;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    opacity: 0.9;
}

.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #113c3a 0%, #1a4a47 100%);
    padding: 50px 40px;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(17, 60, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #eab41e, #f0f18e, #eab41e);
}

.contact-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #eab41e;
    margin-bottom: 15px;
}

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

.cta-section {
    padding: 150px 0;
    background: linear-gradient(135deg, #113c3a 0%, #0f3330 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #eab41e;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #c3e8c9;
    padding: 10px 0 5px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 8px;
}

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

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #eab41e;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #eab41e;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column a {
    color: #c3e8c9;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #eab41e;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p {
    margin: 0;
    font-size: 0.9rem;
}

.contact-info p strong {
    color: #eab41e;
    font-weight: 600;
}

.contact-info .hours {
    color: rgba(195, 232, 201, 0.8);
    font-size: 0.85rem;
    margin-left: 0;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: transparent;
    transform: translateY(-2px);
}

.linkedin-icon {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid rgba(195, 232, 201, 0.2);
    color: rgba(195, 232, 201, 0.7);
    font-size: 0.8rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.modal-content {
    background-color: #e6eae3;
    margin: 20px auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 40px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background-color: #113c3a;
    color: #eab41e;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.4rem;
}

.close {
    color: #eab41e;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.order-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #113c3a;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #113c3a;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Mulish', sans-serif;
    background-color: #c3e8c9;
    color: #113c3a;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #eab41e;
    background-color: #f0f18e;
}

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

.form-group select option {
    background-color: #c3e8c9;
    color: #113c3a;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-cancel,
.btn-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Mulish', sans-serif;
}

.btn-cancel {
    background-color: #e6eae3;
    color: #113c3a;
    border: 2px solid #113c3a;
}

.btn-cancel:hover {
    background-color: #c3e8c9;
}

.btn-submit {
    background-color: #eab41e;
    color: #113c3a;
    border: 2px solid #113c3a;
}

.btn-submit:hover {
    background-color: #f0f18e;
    transform: translateY(-2px);
}

/* Contact Modal Styles */
.contact-modal-content {
    padding: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #eab41e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 60, 58, 0.1);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-modal-icon {
    width: 28px;
    height: 28px;
    stroke: #113c3a;
    stroke-width: 2;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 8px;
}

.contact-details p {
    color: #113c3a;
    opacity: 0.8;
    margin-bottom: 15px;
}

.contact-button {
    display: inline-block;
    background-color: #113c3a;
    color: #eab41e;
    padding: 10px 20px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #eab41e;
    color: #113c3a;
    transform: translateY(-2px);
}

.locations {
    margin-top: 10px;
}

.locations p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.locations strong {
    color: #eab41e;
}

/* Location/Minilager Pages Styles */
.location-hero {
    background: linear-gradient(135deg, #113c3a 0%, #1a5450 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.location-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.location-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #eab41e;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.location-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.location-address {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #eab41e;
    font-weight: 500;
}

.location-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.location-image-section {
    padding: 80px 0;
    background-color: #e6eae3;
}

.location-image-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.location-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(17, 60, 58, 0.15);
    margin-bottom: 20px;
}

.image-caption {
    margin-top: 15px;
}

.image-caption p {
    font-style: italic;
    color: #113c3a;
    opacity: 0.8;
    font-size: 1rem;
}

.location-details {
    padding: 100px 0;
    background-color: #c3e8c9;
}

.details-content {
    max-width: 1200px;
    margin: 0 auto;
}

.details-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.details-text-side h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 30px;
    text-align: left;
}

.details-intro {
    font-size: 1.2rem;
    color: #113c3a;
    opacity: 0.9;
    text-align: left;
    line-height: 1.7;
    margin: 0;
}

.details-image-side {
    text-align: center;
}

.location-image-inline {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(17, 60, 58, 0.15);
    margin-bottom: 15px;
}

.image-caption-inline {
    font-style: italic;
    color: #113c3a;
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.features-compact {
    margin-top: 40px;
}

.features-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: none;
    margin: 0;
}

.feature-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(17, 60, 58, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 60, 58, 0.12);
    border-color: #eab41e;
}

.feature-icon-compact {
    width: 24px;
    height: 24px;
    stroke: #eab41e;
    stroke-width: 2;
    flex-shrink: 0;
}

.feature-compact span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #113c3a;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(17, 60, 58, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(17, 60, 58, 0.15);
    border-color: #eab41e;
}

.feature-icon-large {
    width: 48px;
    height: 48px;
    stroke: #eab41e;
    stroke-width: 2;
    margin: 0 auto 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 15px;
}

.feature-card p {
    color: #113c3a;
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.location-cta {
    padding: 150px 0;
    background-color: #113c3a;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #eab41e;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Support Page Styles */
.support-hero {
    background: linear-gradient(135deg, #113c3a 0%, #1a5450 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

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

.support-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #eab41e;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.support-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.support-options {
    padding: 100px 0;
    background-color: #e6eae3;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 40px 30px;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(17, 60, 58, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(17, 60, 58, 0.15);
    border-color: #eab41e;
}

.support-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eab41e, #f0f18e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.support-icon {
    width: 40px;
    height: 40px;
    stroke: #113c3a;
    stroke-width: 2;
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 15px;
}

.support-card p {
    color: #113c3a;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #113c3a;
    color: #eab41e;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.support-button:hover {
    background-color: #eab41e;
    color: #113c3a;
    transform: translateY(-2px);
}

.button-icon-small {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.support-hours {
    font-size: 0.9rem;
    color: #113c3a;
    opacity: 0.7;
    margin: 0;
}

.support-faq {
    padding: 100px 0;
    background-color: #c3e8c9;
}

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

.faq-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    text-align: left;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(17, 60, 58, 0.1);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 15px;
}

.faq-item p {
    color: #113c3a;
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.support-contact {
    padding: 100px 0;
    background-color: #113c3a;
    text-align: center;
}

/* Desktop styles - ensure proper centering */
@media (min-width: 769px) {
    .container-card .container-actions {
        width: 100% !important;
    }
}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Center text and buttons on tablet */
    .container-detail-info,
    .container-info,
    .container-description,
    .technical-specs,
    .container-gallery,
    .related-containers,
    .cta-section,
    .container-highlights,
    .container-specs {
        text-align: center !important;
    }
    
    .container-detail-actions {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .container-actions {
        justify-content: center !important;
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        align-items: center !important;
    }
    
    .cta-buttons {
        justify-content: center !important;
        text-align: center !important;
        padding: 0 15px !important;
        gap: 15px;
    }
    
    /* Center spec items (volum, nyttelast etc) */
    .spec-item {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Center highlight items */
    .highlight-item {
        justify-content: center !important;
        text-align: center !important;
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.9rem;
        line-height: 1.4;
        white-space: normal;
    }
    
    /* Center ALL text and buttons on mobile */
    .container-detail-info,
    .container-info,
    .container-description,
    .technical-specs,
    .container-gallery,
    .related-containers,
    .cta-section,
    .container-highlights,
    .container-specs {
        text-align: center !important;
    }
    
    .container-detail-actions {
        justify-content: center !important;
        text-align: center !important;
    }
    
    .container-actions {
        justify-content: center !important;
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0 10px !important;
    }
    
    .cta-buttons {
        justify-content: center !important;
        text-align: center !important;
        padding: 0 15px !important;
        gap: 15px;
    }
    
    /* Center spec items (volum, nyttelast etc) */
    .spec-item {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Center highlight items */
    .highlight-item {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Center all buttons */
    .btn-primary,
    .btn-secondary {
        display: block !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    .container-needs-section {
        padding: 60px 0 300px;
        background-image: url('images/boxxy_bg07.svg');
        background-size: 120% auto;
        background-position: center 95%;
        background-repeat: no-repeat;
    }
    
    .container-needs-section::before {
        display: none;
    }
    
    .container-needs-content {
        text-align: center;
        padding: 60px 20px 30px 20px;
        background-image: url('images/boxxy_bg07_fill.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0 -20px;
    }
    
    .container-needs-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .container-needs-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .container-needs-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        gap: 6px;
    }
    
    /* Location pages responsive */
    .location-title {
        font-size: 2.5rem;
    }
    
    .location-subtitle {
        font-size: 1.1rem;
    }
    
    .location-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .location-image {
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-compact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-compact {
        padding: 12px 16px;
    }
    
    .details-intro-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .details-text-side h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .details-intro {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .location-image-inline {
        height: 250px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Support page responsive */
    .support-title {
        font-size: 2.5rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .faq-content h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Container image section - hidden on desktop */
.container-image-section {
    display: none;
}

@media (max-width: 768px) {
    .container-needs-section {
        padding: 60px 0 0px;
        background-image: none;
        margin-bottom: 0;
    }
    
    .container-needs-content {
        padding: 60px 20px 30px 20px;
        margin: 0 -20px;
        background-image: url('images/boxxy_bg07_fill.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .container-image-section {
        display: block;
        padding: 0;
        margin: 0;
        background-image: url('images/boxxy_bg07.svg');
        background-size: 120% auto;
        background-position: center center;
        background-repeat: no-repeat;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container-needs-section {
        padding: 0px 0 0px;
        background-image: none;
        margin-bottom: 0;
    }
    
    .container-needs-content {
        padding: 40px 15px 25px 15px;
        margin: 0 -15px;
        background-image: url('images/boxxy_bg07_fill.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
    }
    
    .container-image-section {
        display: block;
        padding: 0;
        margin: 0;
        background-image: url('images/boxxy_bg07.svg');
        background-size: 120% auto;
        background-position: center center;
        background-repeat: no-repeat;
        height: 250px;
    }
    
    
    .container-needs-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .container-needs-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .container-needs-button {
        padding: 12px 20px;
        font-size: 0.95rem;
        max-width: 260px;
    }

    .hero-large {
        padding: 100px 0 60px;
    }
    
    .location-hero {
        padding: 100px 0 60px;
    }
    
    .location-title {
        font-size: 2rem;
    }
    
    .location-image {
        height: 200px;
    }
    
    .location-image-inline {
        height: 200px;
    }
    
    .location-details,
    .location-cta {
        padding: 60px 0;
    }
    
    .support-hero {
        padding: 100px 0 60px;
    }
    
    .support-title {
        font-size: 2rem;
    }
    
    .support-options,
    .support-faq,
    .support-contact {
        padding: 60px 0;
    }
    
    .support-card {
        padding: 30px 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .features-compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }
    
    .feature-compact {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .feature-compact span {
        font-size: 0.9rem;
    }
    
    .services-overview,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .order-form {
        padding: 20px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .contact-modal-content {
        padding: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon-wrapper {
        align-self: center;
    }
}

/* Minilager Contact Form Styles */
.minilager-contact-form,
.container-contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.form-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #113c3a;
    font-size: 1.1rem;
}

.simple-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.simple-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.simple-contact-form label {
    font-weight: 600;
    color: #113c3a;
    font-size: 0.95rem;
}

.simple-contact-form input,
.simple-contact-form select,
.simple-contact-form textarea {
    padding: 12px;
    border: 2px solid #e6eae3;
    border-radius: 0px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.simple-contact-form input:focus,
.simple-contact-form select:focus,
.simple-contact-form textarea:focus {
    outline: none;
    border-color: #eab41e;
}

.simple-contact-form textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

.simple-contact-form select {
    cursor: pointer;
}

.form-submit {
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.contact-info-small {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e6eae3;
    text-align: center;
}

.contact-info-small p {
    font-size: 0.9rem;
    color: #666;
}

.contact-info-small a {
    color: #113c3a;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-small a:hover {
    color: #eab41e;
}

/* Responsive adjustments for contact forms */
@media (max-width: 768px) {
    .minilager-contact-form,
    .container-contact-form {
        padding: 20px;
        max-width: 100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px auto;
    }
    
    .simple-contact-form .form-group {
        gap: 6px;
    }
    
    .simple-contact-form input,
    .simple-contact-form select,
    .simple-contact-form textarea {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Container Pages Styles */
.hero-container {
    background: linear-gradient(135deg, #113c3a 0%, #c3e8c9 100%);
    padding: 120px 0 80px 0;
    color: white;
    text-align: center;
}

.hero-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-container .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-container .hero-description {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.containers-overview {
    padding: 80px 0;
}

.containers-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.containers-grid {
    display: flex;
    gap: 15px;
    margin-top: 50px;
    margin-bottom: 80px;
    align-items: flex-end;
    justify-content: center;
}

.container-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1 1 0;
    min-width: 0;
}

.container-card-clickable {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.container-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(17, 60, 58, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

/* Featured container (20ft) - much larger and emphasized */
.container-card-featured {
    z-index: 10;
}

.container-card-featured .container-card {
    border: 3px solid #eab41e;
    box-shadow: 0 20px 50px rgba(234, 180, 30, 0.3);
    min-height: 620px;
}

.container-card-featured .container-info {
    padding-bottom: 0;
}

.container-card-featured .container-actions {
    margin-top: auto;
}

.container-card-featured .container-card-clickable {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container-card-featured:hover {
    transform: none;
}

/* Small containers (8ft, 10ft) - much smaller */
.container-card-small .container-card {
    min-height: 580px;
}

.container-card-small .container-info {
    padding-bottom: 0;
}

.container-card-small .container-actions {
    margin-top: auto;
}

.container-card-small:hover {
    transform: none;
}

/* Popular badge */
.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #eab41e, #f0c14b);
    color: #113c3a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 15;
    box-shadow: 0 2px 10px rgba(234, 180, 30, 0.3);
}

.container-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(17, 60, 58, 0.15);
}

.container-image {
    height: 250px;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.container-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.container-card:hover .container-img {
    transform: scale(1.05);
}

.container-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.container-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 15px;
}

.container-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.container-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-icon {
    width: 18px;
    height: 18px;
    stroke: #eab41e;
    stroke-width: 2;
    flex-shrink: 0;
}

.spec-item span {
    font-size: 0.9rem;
    color: #113c3a;
    font-weight: 500;
}

.container-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
    text-align: center;
}

.container-card .container-actions {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative;
    z-index: 10;
}

.container-card .container-actions .btn-primary {
    width: auto !important;
    margin: 0 auto !important;
    display: inline-block !important;
    position: relative;
    z-index: 11;
}

.additional-sizes {
    margin-top: 0px;
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9f7 0%, #e6eae3 100%);
    border-radius: 16px;
    text-align: center;
}

.additional-sizes-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 20px;
}

.additional-sizes-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.container-features {
    background-color: #f8f9f7;
    padding: 80px 0;
}

.container-features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    text-align: center;
    margin-bottom: 15px;
}

.features-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(17, 60, 58, 0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #eab41e 0%, #f0f18e 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(17, 60, 58, 0.12);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #113c3a 0%, #1a5856 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(234, 180, 30, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.feature-card:hover .feature-icon-wrapper::after {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-icon-new {
    width: 32px;
    height: 32px;
    stroke: #eab41e;
    stroke-width: 2;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Container Detail Pages */
.breadcrumb-section {
    background-color: #f8f9f7;
    padding: 100px 0 20px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #113c3a;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #eab41e;
}

.breadcrumb-separator {
    width: 14px;
    height: 14px;
    stroke: #666;
    stroke-width: 2;
}

.breadcrumb span {
    color: #666;
    font-weight: 500;
}

.container-detail-hero {
    background-color: #f8f9f7;
    padding: 60px 0 80px 0;
}

.container-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.container-detail-info h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 15px;
}

.container-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 40px;
}

.container-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    stroke: #113c3a;
    stroke-width: 2;
    flex-shrink: 0;
}

.highlight-item strong {
    color: #113c3a;
    font-size: 1.1rem;
    display: block;
}

.highlight-item p {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 0.9rem;
}

.container-detail-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* MOBILE BUTTON FIX - OPTIMIZE VIEWPORT */
@media (max-width: 768px) {
    /* Optimize viewport height by reducing ALL content */
    html, body {
        font-size: 14px !important; /* Reduce base font size globally */
    }
    
    /* Make header smaller on mobile */
    .header {
        padding: 5px 0 !important;
    }
    
    .logo {
        height: 50px !important;
    }
    
    /* Even more compact hero section */
    .container-detail-hero {
        padding: 70px 0 60px 0 !important; /* Even less top padding, good bottom padding */
    }
    
    .container-detail-hero h1 {
        font-size: 1.7rem !important;
        margin-bottom: 3px !important;
    }
    
    .container-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
    }
    
    /* Make highlights extremely compact */
    .container-highlights {
        margin-bottom: 8px !important;
    }
    
    .highlight-item {
        padding: 4px !important;
        margin-bottom: 1px !important;
    }
    
    .highlight-item strong {
        font-size: 0.75rem !important;
    }
    
    .highlight-item p {
        font-size: 0.65rem !important;
        margin: 0 !important;
        line-height: 0.9 !important;
    }
    
    /* Button with good spacing above and below */
    .container-detail-actions {
        margin-top: 12px !important;
        margin-bottom: 40px !important;
        padding: 0 !important;
    }
    
    /* Normal button styling optimized for mobile */
    a[onclick*="openModal"] {
        width: 100% !important;
        max-width: none !important;
        padding: 16px 12px !important;
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        white-space: normal !important;
        text-align: center !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        display: block !important;
        font-weight: 600 !important;
    }
    
    /* Ensure hero section has enough white space */
    .container-detail-hero {
        padding-bottom: 80px !important;
        background-color: #f8f9f7 !important;
    }
    
    /* Make sure we don't exceed viewport height */
    .container-detail-content {
        min-height: auto !important;
        height: auto !important;
    }
    
    /* Also fix CTA buttons at bottom of page */
    .cta-buttons {
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        width: 100vw !important;
        padding: 20px 10px !important;
        box-sizing: border-box !important;
        display: flex !important;
        justify-content: center !important;
    }
    
    .cta-buttons .btn-primary {
        width: calc(100vw - 40px) !important;
        max-width: 400px !important;
        padding: 16px 20px !important;
        font-size: 0.9rem !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }
    
    /* Reduce spacing in highlights section to make more room */
    .container-highlights {
        margin-bottom: 15px !important;
    }
    
    .highlight-item {
        margin-bottom: 8px !important;
        padding: 12px !important;
    }
}

.container-detail-image {
    text-align: center;
}

.detail-img {
    width: 100%;
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(17, 60, 58, 0.2);
}

/* Image Gallery Styles */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    text-align: center;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    opacity: 1;
    border-color: #eab41e;
    box-shadow: 0 4px 12px rgba(234, 180, 30, 0.3);
}

/* Gallery Navigation Arrows */
.gallery-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(17, 60, 58, 0.7);
    color: #eab41e;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav-arrow:hover {
    background-color: rgba(17, 60, 58, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-arrow.prev {
    left: 10px;
}

.gallery-nav-arrow.next {
    right: 10px;
}

.gallery-nav-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #eab41e;
    stroke-width: 2;
}

.container-description {
    padding: 80px 0;
}

.container-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 30px;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.technical-specs {
    background-color: #f8f9f7;
    padding: 80px 0;
}

.technical-specs h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 40px;
    text-align: center;
}

.specs-table {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(17, 60, 58, 0.1);
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table td {
    padding: 20px 30px;
    border-bottom: 1px solid #e6eae3;
    font-size: 1rem;
}

.specs-table td:first-child {
    background-color: #f8f9f7;
    width: 40%;
    font-weight: 500;
    color: #113c3a;
}

.specs-table td:last-child {
    color: #666;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.container-gallery {
    padding: 80px 0;
}

.container-gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 40px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(17, 60, 58, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.related-containers {
    background-color: #f8f9f7;
    padding: 80px 0;
}

.related-containers h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #113c3a;
    margin-bottom: 40px;
    text-align: center;
}

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

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(17, 60, 58, 0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.related-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #113c3a;
    margin-bottom: 10px;
}

.related-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Design for Container Pages */
@media (max-width: 768px) {
    .hero-container h1 {
        font-size: 2.2rem;
    }
    
    .hero-container .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .containers-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    /* Reorder containers on mobile - 20ft first */
    .container-card-featured {
        order: 1;
    }
    
    .container-card-small:first-of-type {
        order: 2;
    }
    
    .container-card-small:last-of-type {
        order: 3;
    }
    
    /* Reset featured and small scaling on mobile */
    .container-card-featured,
    .container-card-small {
        transform: none !important;
        opacity: 1 !important;
    }
    
    .container-card-featured .container-card {
        height: auto !important;
        border: 2px solid #eab41e !important;
    }

    .container-card-small .container-card {
        height: auto !important;
    }

    /* Keep popular badge visible on mobile */
    .popular-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .container-card {
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .container-card .container-image {
        order: 1 !important;
        height: auto !important;
    }

    .container-card .container-info {
        flex: none !important;
        height: auto !important;
        padding: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        order: 2 !important;
    }

    .container-card .container-info h3 {
        order: 1 !important;
    }

    .container-card .container-info > p {
        order: 2 !important;
    }

    .container-card .container-specs {
        order: 3 !important;
    }

    .container-card .container-actions {
        order: 4 !important;
    }

    /* Extra specificity for small containers */
    .container-card-small .container-card .container-image {
        order: 1 !important;
    }

    .container-card-small .container-card .container-info {
        order: 2 !important;
        height: auto !important;
    }

    .container-card-link {
        flex: none;
    }

    /* Make sure container-card-link children also follow order */
    .container-card-link .container-card {
        display: flex !important;
        flex-direction: column !important;
    }

    .container-card-link .container-card .container-image {
        order: 1 !important;
    }

    .container-card-link .container-card .container-info {
        order: 2 !important;
    }

    .container-actions {
        margin-top: 20px !important;
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 0 15px 30px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        gap: 15px !important;
    }

    /* Reorder containers - 20ft first, then 10ft, then 8ft */
    .container-card-featured {
        order: 1 !important;
    }

    .container-card-small:last-of-type {
        order: 2 !important;
    }

    .container-card-small:first-of-type {
        order: 3 !important;
    }
    
    .container-specs {
        flex-direction: column;
        gap: 15px;
        text-align: center !important;
        align-items: center !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .feature-icon-wrapper {
        margin: 0 auto;
    }
    
    .container-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .container-detail-info h1 {
        font-size: 2.2rem;
    }
    
    .container-detail-actions {
        flex-direction: column;
        gap: 15px;
        margin-left: -15px !important;
        margin-right: -15px !important;
        padding: 20px !important;
        width: calc(100% + 30px) !important;
    }
    
    .specs-table td {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
}