/* ============================================
   Express Connection - Main Stylesheet
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   MOBILE-FIRST RESPONSIVE DESIGN
   Base font size: 16px (1rem)
   ============================================ */

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Smooth scrolling for anchor links */
a[href^="#"] {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
    max-width: 100vw;
}

/* Typography - Responsive with clamp() */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: #000;
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
}

h4 {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
}

p {
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: #333;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Videos */
video {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive iframes (YouTube, maps, etc.) */
iframe,
embed,
object {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

/* Container - Responsive */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 1.25rem);
    width: 100%;
}

/* Header & Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #512608;
}

/* Top Bar */
.header__topbar {
    background: linear-gradient(135deg, #512608 0%, #654321 100%);
    color: #fff;
    padding: clamp(0.1rem, 0.5vw, 0.1rem) 0;
    font-size: clamp(0.6rem, 1.5vw, 0.65rem);
}

.header__topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.header__contact-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.header__contact-item {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1vw, 0.35rem);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.7rem, 1.8vw, 0.75rem);
    line-height: 1.2;
}

.header__contact-item:hover {
    color: #fff;
}

.header__contact-item svg {
    flex-shrink: 0;
    width: clamp(10px, 2.5vw, 12px);
    height: clamp(10px, 2.5vw, 12px);
}

.header__topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__quick-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: clamp(0.1rem, 0.5vw, 0.1rem) 0;
    font-size: clamp(0.7rem, 1.8vw, 0.75rem);
    line-height: 1.2;
}

.header__quick-link:hover {
    color: #fff;
    text-decoration: underline;
}

.header__cta-btn {
    background-color: #fff;
    color: #512608;
    padding: clamp(0.2rem, 0.8vw, 0.25rem) clamp(0.7rem, 2vw, 0.85rem);
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.6rem, 1.5vw, 0.65rem);
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1.1;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
}

.header__cta-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 4vw, 1.25rem);
    background-color: #fff;
    width: 100%;
    position: relative;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header__logo:hover {
    transform: scale(1.05);
}

.header__logo-img {
    height: clamp(40px, 8vw, 55px);
    width: auto;
    max-width: min(220px, 100%);
    object-fit: contain;
}

.header__nav-list {
    display: none;
    list-style: none;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

@media (min-width: 769px) {
    .header__nav-list {
        display: flex;
    }
}

.header__nav-item {
    position: relative;
}

.header__nav-link {
    color: #000;
    font-weight: 600;
    padding: clamp(0.625rem, 1.5vw, 0.75rem) 0;
    display: flex;
    align-items: center;
    gap: clamp(0.375rem, 1vw, 0.5rem);
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    min-height: 44px;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #512608;
    transition: width 0.3s ease;
}

.header__nav-link:hover {
    color: #512608;
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__nav-arrow {
    transition: transform 0.3s ease;
}

.services-dropdown:hover .header__nav-arrow {
    transform: rotate(180deg);
}

/* Services Dropdown */
.services-dropdown {
    position: relative;
}

.services-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    min-width: min(280px, 90vw);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: clamp(0.5rem, 1.5vw, 0.75rem);
    z-index: 100;
    border: 1px solid #e0e0e0;
    padding: clamp(0.375rem, 1vw, 0.5rem) 0;
    max-width: 100vw;
}

.services-dropdown:hover .services-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown__link {
    display: block;
    padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1rem, 2.5vw, 1.25rem);
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.services-dropdown__link:last-child {
    border-bottom: none;
}

.services-dropdown__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #512608;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.services-dropdown__link:hover {
    background-color: #f9f9f9;
    color: #512608;
    padding-left: 1.5rem;
}

.services-dropdown__link:hover::before {
    transform: scaleY(1);
}

/* Mobile Menu Checkbox (hidden) */
.mobile-menu-checkbox {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: clamp(0.375rem, 1vw, 0.5rem);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: clamp(20px, 5vw, 24px);
    height: clamp(20px, 5vw, 24px);
    color: #000;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: clamp(0.75rem, 2vw, 1rem) 0;
    z-index: 999;
    width: 100%;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

/* Show mobile nav when checkbox is checked */
#mobile-menu-toggle:checked ~ .mobile-nav,
.mobile-menu-checkbox:checked ~ .mobile-nav {
    display: block !important;
}

/* Change hamburger icon to X when menu is open */
#mobile-menu-toggle:checked ~ .mobile-menu-btn svg,
.mobile-menu-checkbox:checked ~ .mobile-menu-btn svg {
    display: none;
}

#mobile-menu-toggle:checked ~ .mobile-menu-btn::after,
.mobile-menu-checkbox:checked ~ .mobile-menu-btn::after {
    content: '✕';
    font-size: clamp(20px, 5vw, 24px);
    line-height: clamp(20px, 5vw, 24px);
    display: block;
    color: #000;
}

/* Mobile Submenu Checkbox */
.mobile-submenu-checkbox {
    display: none;
}

.mobile-nav__list {
    list-style: none;
}

.mobile-nav__item {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.mobile-nav__link {
    display: block;
    padding: clamp(0.875rem, 2.5vw, 1rem) clamp(1rem, 4vw, 1.25rem);
    color: #000;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav__link:hover,
.mobile-nav__link:active {
    background-color: #f5f5f5;
}

.mobile-nav__submenu {
    list-style: none;
    background-color: #f9f9f9;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
}

/* Show submenu when checkbox is checked */
#services-submenu-toggle:checked ~ .mobile-nav__submenu,
.mobile-submenu-checkbox:checked ~ .mobile-nav__submenu {
    display: block !important;
    max-height: 2000px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#services-submenu-toggle:checked ~ label .mobile-nav__arrow,
.mobile-submenu-checkbox:checked ~ label .mobile-nav__arrow {
    transform: rotate(180deg);
}

#services-submenu-toggle:checked ~ label,
.mobile-submenu-checkbox:checked ~ label {
    background-color: #f5f5f5;
}

.mobile-nav__submenu-item {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-nav__submenu-link {
    display: block;
    padding: clamp(0.625rem, 2vw, 0.75rem) clamp(2.5rem, 8vw, 2.5rem);
    color: #666;
    font-size: clamp(0.8125rem, 2vw, 0.9rem);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-nav__arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.75em;
    display: inline-block;
}

/* Ensure submenu is visible when checkbox is checked */
.mobile-nav__item .mobile-submenu-checkbox:checked + label + .mobile-nav__submenu,
.mobile-nav__item .mobile-submenu-checkbox:checked ~ .mobile-nav__submenu {
    display: block !important;
    max-height: 2000px !important;
}

/* Fix for label click area */
.mobile-nav__item label.mobile-nav__link {
    width: 100%;
    cursor: pointer;
}

/* Hero Section - Responsive */
.hero {
    position: relative;
    min-height: clamp(400px, 50vh, 600px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    text-align: left;
    padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 1.25rem);
    overflow: hidden;
    width: 100%;
}

.hero__content {
    max-width: 100%;
    width: 100%;
    z-index: 2;
    text-align: left;
    position: relative;
}

.hero__title {
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: #fff;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    line-height: 1.2;
}

.hero__content:hover .hero__title {
    transform: translateY(-3px);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    line-height: 1.5;
}

.hero__content:hover .hero__subtitle {
    transform: translateY(-2px);
    opacity: 0.95;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Buttons - Touch-friendly & Responsive */
.btn {
    display: inline-block;
    padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1.5rem, 4vw, 2rem);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px; /* Touch-friendly minimum */
    width: 100%;
    max-width: 100%;
}

@media (min-width: 481px) {
    .btn {
        width: auto;
    }
}

.btn--primary {
    background-color: #000;
    color: #fff;
}

.btn--primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn--secondary {
    background-color: #fff;
    color: #000;
}

.btn--secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Section Styles - Responsive */
.section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    width: 100%;
    overflow-x: hidden;
}

.section__title {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: clamp(40px, 8vw, 60px);
    height: 3px;
    background: linear-gradient(90deg, #512608, #8B4513);
    transition: transform 0.3s ease;
}

.section:hover .section__title::after {
    transform: translateX(-50%) scaleX(1);
}

.section:hover .section__title {
    color: #512608;
}

.section__subtitle {
    text-align: center;
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #666;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    line-height: 1.6;
}

/* Story Section - Responsive Grid */
.story {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background-color: #f9f9f9;
    width: 100%;
    overflow-x: hidden;
}

.story__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: start;
    transition: transform 0.3s ease;
}

@media (min-width: 769px) {
    .story__container {
        grid-template-columns: 1fr 1fr;
    }
}

.story__container:hover {
    transform: translateY(-2px);
}

.story__content h2 {
    margin-bottom: 0;
    text-align: left;
}

.story__text-right {
    text-align: left;
    transition: transform 0.3s ease;
}

.story__text-right p {
    transition: color 0.3s ease, transform 0.3s ease;
}

.story__text-right:hover p {
    color: #333;
    transform: translateX(5px);
}

.story__video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.story__video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, filter 0.3s ease, box-shadow 0.3s ease;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.story__video-wrapper:hover .story__video {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.story__content h2 {
    transition: color 0.3s ease;
}

.story__content:hover h2 {
    color: #512608;
}

.story__content p {
    transition: color 0.3s ease;
}

.story__content:hover p {
    color: #333;
}

/* Video Overlay - Responsive */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    padding: clamp(1rem, 3vw, 2rem);
}

.video-overlay__title {
    font-size: clamp(1.25rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    line-height: 1.2;
}

.video-overlay:hover .video-overlay__title {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.video-overlay__subtitle {
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1.5;
}

.video-overlay:hover .video-overlay__subtitle {
    transform: translateY(-3px);
    color: #f0f0f0;
}

.video-overlay {
    transition: all 0.3s ease;
}

.video-overlay__button {
    background-color: rgba(139, 69, 19, 0.9);
    border: 2px solid #fff;
    color: #fff;
    padding: clamp(0.75rem, 2vw, 0.875rem) clamp(2rem, 5vw, 2.5rem);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
}

/* Video overlay button responsive - handled in main media queries */

.video-overlay__button:hover {
    background-color: rgba(139, 69, 19, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Achievements Section - Responsive */
.achievements {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background-color: #fff;
    width: 100%;
    overflow-x: hidden;
}

.achievements__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: start;
}

@media (min-width: 769px) {
    .achievements__container {
        grid-template-columns: 1fr 1fr;
    }
}

.achievements__image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.achievements__image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(81, 38, 8, 0.1) 0%, rgba(81, 38, 8, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 8px;
}

.achievements__image-wrapper:hover::before {
    opacity: 1;
}

.achievements__image-wrapper:hover {
    transform: translateY(-5px);
}

.achievements__image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.achievements__image-wrapper:hover .achievements__image {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.achievements__content {
    width: 100%;
    transition: transform 0.3s ease;
}

.achievements__content:hover {
    transform: translateX(5px);
}

.achievements__content h2 {
    transition: color 0.3s ease;
}

.achievements__content:hover h2 {
    color: #512608;
}

.achievements__content p {
    transition: color 0.3s ease;
}

.achievements__content:hover p {
    color: #444;
}

.achievements__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-top: 0;
}

@media (min-width: 481px) {
    .achievements__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.achievement-card {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(81, 38, 8, 0.1), transparent);
    transition: left 0.5s ease;
}

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(81, 38, 8, 0.15);
    background-color: #fff;
}

.achievement-card:hover .achievement-card__number {
    color: #512608;
    transform: scale(1.1);
}

.achievement-card:hover .achievement-card__label {
    color: #333;
}

.achievement-card__number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #000;
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    transition: all 0.3s ease;
}

.achievement-card__label {
    font-size: 1rem;
    color: #666;
    transition: color 0.3s ease;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: #fff;
}

.services section {
    position: relative;
}

.services img {
    transition: transform 0.5s ease, filter 0.3s ease, box-shadow 0.3s ease !important;
}

.services:hover img {
    transform: scale(1.02);
    filter: brightness(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}

.services > .container > div {
    transition: transform 0.3s ease;
}

.services:hover > .container > div {
    transform: translateY(-3px);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 481px) {
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    }
}

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: clamp(1.5rem, 4vw, 2rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #512608, #8B4513);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(81, 38, 8, 0.15);
    transform: translateY(-8px) scale(1.02);
    border-color: #512608;
    background-color: #fafafa;
}

.service-card:hover .service-card__title {
    color: #512608;
    transform: translateX(5px);
}

.service-card:hover .service-card__description {
    color: #444;
}

.service-card__title {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.service-card__description {
    color: #666;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.service-card__link {
    color: #000;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card__link:hover {
    color: #666;
}

/* Specialized Services - Responsive */
.specialized {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background-color: #f9f9f9;
    width: 100%;
    overflow-x: hidden;
}

.specialized__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
}

@media (min-width: 769px) {
    .specialized__container {
        grid-template-columns: 1fr 1fr;
    }
}

.specialized__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.specialized__image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(81, 38, 8, 0.1) 0%, rgba(81, 38, 8, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 8px;
}

.specialized__image-wrapper:hover::before {
    opacity: 1;
}

.specialized__image-wrapper:hover {
    transform: translateY(-5px);
}

.specialized__image {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.5s ease, filter 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.specialized__image-wrapper:hover .specialized__image {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.specialized__container {
    transition: transform 0.3s ease;
}

.specialized__container:hover {
    transform: translateY(-2px);
}

.specialized__content h3 {
    margin-bottom: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.specialized__content:hover h3 {
    color: #512608;
    transform: translateX(5px);
}

.specialized__content p {
    margin-bottom: 1.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.specialized__content:hover p {
    color: #444;
}

/* About Preview - Responsive */
.about-preview {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background-color: #fff;
    width: 100%;
    overflow-x: hidden;
}

.about-preview__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
    transition: transform 0.3s ease;
}

@media (min-width: 769px) {
    .about-preview__container {
        grid-template-columns: 1fr 1fr;
    }
}

.about-preview__container:hover {
    transform: translateY(-2px);
}

.about-preview__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-preview__image {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.5s ease, filter 0.3s ease;
    display: block;
}

.about-preview__image-wrapper:hover .about-preview__image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.about-preview__image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(81, 38, 8, 0.1) 0%, rgba(81, 38, 8, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 8px;
}

.about-preview__image-wrapper:hover::before {
    opacity: 1;
}

.about-preview__content h3 {
    transition: color 0.3s ease;
}

.about-preview__content:hover h3 {
    color: #512608;
}

/* Goals & Mission - Responsive */
.goals-mission {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background-color: #f9f9f9;
    width: 100%;
    overflow-x: hidden;
}

.goals-mission__container {
    max-width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(1rem, 4vw, 1.25rem);
}

.goals-mission__title {
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.goals-mission__container:hover .goals-mission__title {
    color: #512608;
}

.goals-mission__content {
    color: #666;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.goals-mission__container:hover .goals-mission__content {
    color: #444;
}

.goals-mission__container {
    transition: transform 0.3s ease;
}

.goals-mission__container:hover {
    transform: translateY(-3px);
}

/* CTA Section - Responsive */
.cta {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background-color: #512608;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta__content {
    max-width: min(800px, 100%);
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    padding: 0 clamp(1rem, 4vw, 1.25rem);
}

.cta__title {
    color: #fff;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.cta__text {
    color: #fff;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    opacity: 0.95;
}

.cta__subtext {
    color: #fff;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: 1.6;
    opacity: 0.85;
    font-style: italic;
    margin-top: clamp(0.75rem, 2vw, 1rem);
}

.cta__actions {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    width: 100%;
}

@media (min-width: 481px) {
    .cta__actions {
        flex-direction: row;
    }
}

.cta__button--primary {
    background-color: #fff;
    color: #512608;
    padding: clamp(0.875rem, 2vw, 1rem) clamp(2rem, 5vw, 2.5rem);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    min-height: 44px;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 481px) {
    .cta__button--primary {
        width: auto;
    }
}

.cta__button--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: clamp(0.875rem, 2vw, 1rem) clamp(2rem, 5vw, 2.5rem);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    min-height: 44px;
    width: 100%;
    max-width: 300px;
}

@media (min-width: 481px) {
    .cta__button--secondary {
        width: auto;
    }
}

.cta__button--secondary:hover {
    background-color: #fff;
    color: #512608;
    border-color: #fff;
}

.cta__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
    padding-top: clamp(1.5rem, 4vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: min(900px, 100%);
    margin: 0 auto;
    width: 100%;
    padding-left: clamp(1rem, 4vw, 1.25rem);
    padding-right: clamp(1rem, 4vw, 1.25rem);
}

@media (min-width: 481px) {
    .cta__info {
        flex-direction: row;
    }
}

.cta__info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.cta__info-item strong {
    color: #fff;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 600;
    display: block;
}

.cta__info-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.875rem, 2vw, 0.95rem);
}

.cta__info-item {
    transition: transform 0.3s ease;
    cursor: default;
}

.cta__info-item:hover {
    transform: translateY(-3px) scale(1.05);
}

.cta__info-item:hover strong {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta__info-item:hover span {
    color: rgba(255, 255, 255, 0.95);
}

.cta__button {
    background-color: #fff;
    color: #8B4513; /* Changed from #000 to match brown theme */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(81, 38, 8, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.cta__button:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer - Compact & Responsive */
.footer {
    background-color: #fff;
    color: #333;
    margin-top: clamp(2rem, 5vw, 4rem);
    border-top: 3px solid #512608;
    width: 100%;
    overflow-x: hidden;
}

/* Footer Top Bar - Compact on Mobile */
.footer__topbar {
    background: linear-gradient(135deg, #512608 0%, #654321 100%);
    padding: clamp(0.5rem, 1.5vw, 0.75rem) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .footer__topbar {
        padding: 0.5rem 0;
    }
}

.footer__topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
    width: 100%;
}

.footer__quick-links {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

@media (min-width: 481px) {
    .footer__quick-links {
        justify-content: flex-start;
        gap: clamp(0.75rem, 2vw, 1.5rem);
    }
}

.footer__quick-link {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1vw, 0.5rem);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    transition: color 0.3s ease, transform 0.3s ease;
    min-height: 36px;
    padding: 0.25rem 0;
}

@media (min-width: 481px) {
    .footer__quick-link {
        font-size: clamp(0.8125rem, 2vw, 0.95rem);
        min-height: 44px;
    }
}

.footer__quick-link:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer__quick-link svg {
    flex-shrink: 0;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    justify-content: center;
}

@media (min-width: 481px) {
    .footer__social {
        justify-content: flex-end;
        gap: 1rem;
    }
}

.footer__social-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.75rem, 2vw, 0.875rem);
    margin-right: clamp(0.25rem, 1vw, 0.5rem);
    display: none;
}

@media (min-width: 481px) {
    .footer__social-label {
        display: inline;
        font-size: 0.9rem;
    }
}

.footer__social-link {
    width: clamp(28px, 5vw, 32px);
    height: clamp(28px, 5vw, 32px);
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

@media (min-width: 481px) {
    .footer__social-link {
        width: clamp(32px, 6vw, 36px);
        height: clamp(32px, 6vw, 36px);
        min-width: 44px;
        min-height: 44px;
    }
}

.footer__social-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer__social-link svg {
    width: clamp(16px, 3vw, 18px);
    height: clamp(16px, 3vw, 18px);
}

/* Footer Main Content - Compact */
.footer__main {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1rem, 3vw, 1.5rem);
    background-color: #f9f9f9;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 769px) {
    .footer__main {
        padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2rem);
    }
}

.footer__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 769px) {
    .footer__container {
        gap: clamp(2rem, 5vw, 3rem);
    }
}

@media (min-width: 769px) {
    .footer__container {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__company {
    max-width: 100%;
}

@media (min-width: 769px) {
    .footer__company {
        max-width: 400px;
    }
}

.footer__logo {
    display: inline-block;
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    transition: transform 0.3s ease;
}

.footer__logo:hover {
    transform: scale(1.05);
}

.footer__logo-img {
    max-width: clamp(120px, 25vw, 180px);
    height: auto;
    display: block;
}

@media (min-width: 481px) {
    .footer__logo-img {
        max-width: 200px;
    }
}

.footer__description {
    color: #666;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.6;
    font-size: clamp(0.8125rem, 1.8vw, 0.875rem);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 481px) {
    .footer__description {
        -webkit-line-clamp: 5;
        line-clamp: 5;
        margin-bottom: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.8;
        font-size: clamp(0.875rem, 2vw, 0.95rem);
    }
}

.footer__contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

@media (min-width: 481px) {
    .footer__contact-info {
        gap: clamp(0.75rem, 2vw, 1rem);
    }
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    color: #666;
    width: 100%;
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
}

@media (min-width: 481px) {
    .footer__contact-item {
        gap: clamp(0.75rem, 2vw, 1rem);
    }
}

.footer__contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: #512608;
}

.footer__contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer__contact-item strong {
    color: #333;
    font-size: clamp(0.8125rem, 2vw, 0.9rem);
    font-weight: 600;
}

.footer__contact-item span {
    color: #666;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
}

.footer__section-title {
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: #512608;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: clamp(0.375rem, 1vw, 0.5rem);
}

@media (min-width: 481px) {
    .footer__section-title {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        padding-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
    }
}

.footer__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(30px, 6vw, 40px);
    height: 3px;
    background-color: #512608;
}

.footer__list {
    list-style: none;
}

.footer__list-item {
    margin-bottom: clamp(0.5rem, 1.5vw, 0.625rem);
}

@media (min-width: 481px) {
    .footer__list-item {
        margin-bottom: 0.75rem;
    }
}

.footer__link {
    color: #666;
    font-size: clamp(0.75rem, 1.8vw, 0.8125rem);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
}

@media (min-width: 481px) {
    .footer__link {
        font-size: clamp(0.8125rem, 2vw, 0.9rem);
        min-height: 44px;
    }
}

.footer__link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #512608;
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: #512608;
    padding-left: 5px;
}

.footer__link:hover::before {
    width: clamp(15px, 4vw, 20px);
}

/* Footer Section Toggle (Mobile Dropdown) */
.footer__section-toggle {
    display: none;
}

.footer__section-title--toggle {
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.footer__section-title--toggle::after {
    display: none;
}

.footer__section-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
    color: #512608;
    margin-left: auto;
}

.footer__section-toggle:checked ~ .footer__section-title--toggle .footer__section-arrow {
    transform: rotate(180deg);
}

.footer__list--collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.footer__section-toggle:checked ~ .footer__list--collapsible {
    max-height: 2000px;
    margin-top: 0.5rem;
}

/* Desktop: Show always, hide toggle functionality */
@media (min-width: 769px) {
    .footer__section-title--toggle {
        cursor: default;
        border-bottom: none;
        padding-bottom: clamp(0.375rem, 1vw, 0.5rem);
        margin-bottom: clamp(0.75rem, 2vw, 1rem);
        position: relative;
    }
    
    .footer__section-title--toggle::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: clamp(30px, 6vw, 40px);
        height: 3px;
        background-color: #512608;
    }
    
    .footer__section-arrow {
        display: none;
    }
    
    .footer__list--collapsible {
        max-height: none;
        overflow: visible;
        margin-top: 0;
        padding-left: 0;
    }
}

/* Footer Copyright - Compact */
.footer__copyright {
    background-color: #fff;
    padding: clamp(0.75rem, 2vw, 1rem) 0;
    border-top: 1px solid #e0e0e0;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 481px) {
    .footer__copyright {
        padding: clamp(1rem, 3vw, 1.5rem) 0;
    }
}

.footer__copyright-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.75rem, 2vw, 1rem);
    text-align: center;
    width: 100%;
}

@media (min-width: 481px) {
    .footer__copyright-content {
        flex-direction: row;
        text-align: left;
    }
}

.footer__copyright p {
    color: #666;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    margin: 0;
    width: 100%;
    text-align: center;
}

@media (min-width: 481px) {
    .footer__copyright p {
        text-align: left;
    }
}

.footer__legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    flex-wrap: wrap;
    width: 100%;
}

@media (min-width: 481px) {
    .footer__legal-links {
        justify-content: flex-end;
    }
}

.footer__legal-link {
    color: #666;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    text-decoration: none;
    transition: color 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer__legal-link:hover {
    color: #512608;
}

.footer__separator {
    color: #ccc;
}

/* Forms - Responsive & Touch-friendly */
.form {
    max-width: min(600px, 100%);
    margin: 0 auto;
    width: 100%;
    padding: 0 clamp(1rem, 4vw, 1.25rem);
}

.form__group {
    margin-bottom: clamp(1.25rem, 3vw, 1.5rem);
}

.form__label {
    display: block;
    margin-bottom: clamp(0.375rem, 1vw, 0.5rem);
    font-weight: 600;
    color: #000;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: clamp(0.75rem, 2vw, 0.875rem);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-family: inherit;
    transition: border-color 0.3s ease;
    min-height: 44px; /* Touch-friendly */
    box-sizing: border-box;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #000;
}

.form__textarea {
    min-height: clamp(120px, 25vw, 150px);
    resize: vertical;
}

.form__error {
    color: #d32f2f;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form__error.active {
    display: block;
}

/* Tracking Page */
.tracking {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    min-height: clamp(400px, 60vh, 600px);
    width: 100%;
    overflow-x: hidden;
}

.tracking__form {
    max-width: min(600px, 100%);
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    padding: 0 clamp(1rem, 4vw, 1.25rem);
    width: 100%;
}

.tracking__results {
    max-width: min(800px, 100%);
    margin: 0 auto;
    display: none;
    padding: 0 clamp(1rem, 4vw, 1.25rem);
    width: 100%;
}

.tracking__results.active {
    display: block;
}

.tracking__status {
    background-color: #f9f9f9;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 8px;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    width: 100%;
}

.tracking__status-title {
    font-size: clamp(1.25rem, 3.5vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.tracking__status-badge {
    display: inline-block;
    padding: clamp(0.375rem, 1vw, 0.5rem) clamp(0.75rem, 2vw, 1rem);
    background-color: #4caf50;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.tracking__timeline {
    list-style: none;
    position: relative;
    padding-left: clamp(1.5rem, 4vw, 2rem);
}

.tracking__timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e0e0e0;
}

.tracking__timeline-item {
    position: relative;
    padding-bottom: clamp(1.5rem, 4vw, 2rem);
}

.tracking__timeline-item::before {
    content: '';
    position: absolute;
    left: -1.75rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4caf50;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #4caf50;
}

.tracking__timeline-item:last-child {
    padding-bottom: 0;
}

.tracking__timeline-date {
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    color: #666;
    margin-bottom: clamp(0.2rem, 0.5vw, 0.25rem);
}

.tracking__timeline-event {
    font-weight: 600;
    color: #000;
}

/* Animations - CSS Only */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s ease-in forwards;
}

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

/* ============================================
   RESPONSIVE MEDIA QUERIES
   Mobile-First Approach
   ============================================ */

/* Mobile: 320px - 480px (Base styles already mobile-first) */
@media (max-width: 320px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 clamp(0.75rem, 3vw, 1rem);
    }
    
    .hero {
        min-height: clamp(350px, 60vh, 400px);
    }
    
    /* Extra compact footer for very small screens */
    .footer__topbar {
        padding: 0.4rem 0;
    }
    
    .footer__quick-links {
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .footer__quick-link {
        font-size: 0.7rem;
        min-height: 28px;
    }
    
    .footer__social-link {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }
    
    .footer__main {
        padding: 1rem 0 0.75rem;
    }
    
    .footer__container {
        gap: 1rem;
    }
    
    .footer__description {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .footer__logo-img {
        max-width: 100px;
    }
    
    .footer__section-title {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
    }
    
    .footer__link {
        font-size: 0.7rem;
        min-height: 28px;
    }
    
    .footer__copyright {
        padding: 0.5rem 0;
    }
    
    .footer__copyright p {
        font-size: 0.75rem;
    }
    
    .footer__legal-link {
        font-size: 0.7rem;
        min-height: 28px;
    }
}

/* Small Mobile: 321px - 480px */
@media (min-width: 321px) and (max-width: 480px) {
    .header__topbar {
        display: none;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .video-overlay__button {
        width: 100%;
        max-width: 90%;
    }
}

/* Tablet: 481px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .header__topbar {
        display: none;
    }
    
    .header__topbar-content {
        flex-direction: column;
        gap: clamp(0.5rem, 2vw, 0.75rem);
        text-align: center;
    }

    .header__contact-info {
        justify-content: center;
        gap: clamp(1rem, 3vw, 1.5rem);
        flex-wrap: wrap;
    }

    .header__topbar-actions {
        justify-content: center;
    }
    
    .achievements__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    }
}

/* Small Laptop: 769px - 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .header__topbar-content {
        flex-wrap: wrap;
        gap: clamp(0.5rem, 1.5vw, 0.75rem);
    }
    
    .header__nav-list {
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .story__container,
    .specialized__container,
    .about-preview__container,
    .achievements__container {
        gap: clamp(2rem, 4vw, 2.5rem);
    }
}

/* Desktop: 1025px - 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        max-width: min(1200px, 95%);
    }
}

/* Large Screens: 1440px+ */
@media (min-width: 1441px) {
    .container {
        max-width: 1200px;
    }
    
    html {
        font-size: 18px;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 768px) {
    .footer__topbar {
        padding: 0.4rem 0;
    }
    
    .footer__topbar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .footer__quick-links {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.4rem;
        width: 100%;
    }
    
    .footer__quick-link {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
        min-height: 28px;
    }

    .footer__social {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .footer__social-link {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }

    .footer__main {
        padding: 1rem 0 0.75rem;
    }
    
    .footer__container {
        gap: 1rem;
    }
    
    .footer__logo-img {
        max-width: 100px;
    }
    
    .footer__description {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 0.75rem;
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .footer__contact-info {
        gap: 0.4rem;
    }
    
    .footer__contact-item {
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .footer__contact-item svg {
        width: 14px;
        height: 14px;
    }
    
    .footer__contact-item strong {
        font-size: 0.75rem;
    }
    
    .footer__contact-item span {
        font-size: 0.7rem;
    }
    
    .footer__section-title {
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
        padding-bottom: 0.3rem;
    }
    
    .footer__section-title--toggle {
        font-size: 0.8rem;
        padding: 0.6rem 0;
    }
    
    .footer__list--collapsible {
        padding-left: 0.5rem;
    }
    
    .footer__section-toggle:checked ~ .footer__list--collapsible {
        margin-top: 0.4rem;
        padding-bottom: 0.5rem;
    }
    
    .footer__list-item {
        margin-bottom: 0.35rem;
    }
    
    .footer__link {
        font-size: 0.7rem;
        min-height: 28px;
    }

    .footer__copyright {
        padding: 0.5rem 0;
    }
    
    .footer__copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
    
    .footer__copyright p {
        font-size: 0.7rem;
    }
    
    .footer__legal-links {
        flex-direction: row;
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer__legal-link {
        font-size: 0.7rem;
        min-height: 28px;
    }
    
    .footer__separator {
        display: none;
    }

    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: clamp(2rem, 5vw, 3rem) !important;
    }
}

/* Prevent horizontal scrolling on all devices */
* {
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Responsive Video Wrapper */
.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
}

/* Additional Hover Effects for About Page */
.about-preview__container h2,
.story__container h2,
.section h2:not(.section__title) {
    transition: color 0.3s ease, transform 0.3s ease;
}

.about-preview__container:hover h2,
.story__container:hover h2,
.section:hover h2:not(.section__title) {
    color: #512608;
    transform: translateX(5px);
}

.about-preview__container p,
.story__container p {
    transition: color 0.3s ease;
}

.about-preview__container:hover p,
.story__container:hover p {
    color: #444;
}