@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*===== VARIABLES CSS =====*/
:root {

  /*========== Colors ==========*/

  --text-color: #333333;
  --text-color-light: #A6A6A6;
  --body-color: #FBFEFD;
  --container-color: #FFFFFF;

  /*========== Font and typography ==========*/
  --body-font: 'Inter', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 1rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 600;
  --font-semi-bold: 700;

}


html{
    scroll-behavior: smooth;
    margin: 0; /* Remove default margin */
    padding: 0;
  }

  
  body{
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.5;
    margin: 0; /* Remove default margin */
    padding: 0;
  
  }



 /* Header  */
        header {
            background: rgba(248, 248, 248, 0.95);
            font-family: 'Poppins', sans-serif;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            /* Reduced overall height */
            padding: 0;
        }

        .header-scrolled {
            background: rgba(248, 248, 248, 0.98);
            padding: 0;
        }

        .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            /* Reduced vertical padding for shorter header */
            padding: 8px 20px; /* Was 10px 20px */
            position: relative;
        }

        .logo img {
            /* Reduced logo size for better proportion with shorter header */
            height: 40px; /* Was 48px */
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        /* Navigation Menu - Adjustments for shorter header */
        .nav-menu ul {
            display: flex;
            gap: 20px; /* Reduced from 25px for tighter spacing */
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu ul li {
            position: relative;
        }

        .nav-menu ul li a {
            text-decoration: none;
            color: #333;
            /* Reduced vertical padding to fit shorter header */
            padding: 10px 12px; /* Was 12px 15px */
            position: relative;
            font-weight: 700; /* CHANGED: Made bold */
            transition: all 0.2s ease;
            border-radius: 8px;
            display: inline-block;
            font-size: 15px; /* Slightly smaller font */
        }

        /* Active/Hover state styling */
        .nav-menu ul li a:hover,
        .nav-menu ul li a:focus,
        .nav-menu ul li a.active {
            color: #1f5a28;
            background: rgba(0, 123, 255, 0.05);
        }

        .nav-menu ul li a::after {
            content: "";
            display: block;
            width: 0;
            height: 2px;
            background: #1f5a28;
            transition: width 0.3s;
            position: absolute;
            bottom: -2px; /* Adjusted for shorter header */
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-menu ul li a:hover::after,
        .nav-menu ul li a:focus::after,
        .nav-menu ul li a.active::after {
            width: 70%;
        }

        /* Special styling for Gallery link - separated to the far end */
        .nav-menu ul li:last-child {
            margin-left: auto;
        }
        
        /* Add separator line before the third from last item (Gallery) */
        .nav-menu ul li:nth-last-child(3)::before {
            content: "|";
            color: #ccc;
            margin-right: 20px;
            font-weight: normal;
        }
        /* Dropdown Styles - Adjusted for shorter header */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 4px; /* Reduced from 6px */
            cursor: pointer;
            text-decoration: none;
            color: #333;
            padding: 10px 12px; /* Reduced to match other nav items */
            font-weight: 700; /* CHANGED: Made bold */
            transition: all 0.2s ease;
            border-radius: 8px;
            position: relative;
            font-size: 15px; /* Consistent font size */
        }

        .dropdown-toggle:hover,
        .dropdown-toggle:focus {
            color: #1f5a28;
            background: rgba(0, 123, 255, 0.05);
        }

        .dropdown-toggle::after {
            content: "";
            display: block;
            width: 0;
            height: 2px;
            background: #1f5a28;
            transition: width 0.3s;
            position: absolute;
            bottom: -2px; /* Adjusted for shorter header */
            left: 50%;
            transform: translateX(-50%);
        }

        .dropdown-toggle:hover::after,
        .dropdown-toggle:focus::after {
            width: 70%;
        }

        .dropdown-icon {
            font-size: 0.7em; /* Slightly smaller */
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        /* Dropdown Menu - Scrollbar removed */
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 2px);
            left: 0;
            min-width: 220px;
            max-width: 280px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            padding: 6px 0;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1001;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            overflow-y: visible; /* Removed scrollbar */
            max-height: none; /* Removed max-height restriction */
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
            width: 100%;
            display: block;
        }

        .dropdown-menu a {
            display: block;
            padding: 8px 16px;
            color: #333;
            text-decoration: none;
            font-size: 13px;
            font-weight: 400;
            transition: all 0.2s ease;
            border-radius: 4px;
            white-space: normal;
            width: 100%;
            display: block;
            box-sizing: border-box;
            margin: 1px 6px;
            width: calc(100% - 12px);
        }

        .dropdown-menu a:hover {
            background: rgba(0, 123, 255, 0.08);
            color: #1f5a28;
            padding-left: 20px;
        }

        .dropdown-menu a::after {
            display: none;
        }

        /* Overlay for mobile menu */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(3px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Enhanced Mobile Menu Styles - Adjusted for shorter header */
        @media (max-width: 768px) {
            /* Mobile header is naturally shorter due to reduced container padding */
            .menu-toggle {
                display: block;
                background: none;
                border: none;
                font-size: 1.3rem;
                color: #333;
                cursor: pointer;
                padding: 8px;
                z-index: 1001;
                transition: transform 0.3s ease;
            }

            .menu-toggle.active {
                transform: rotate(90deg);
            }

            .nav-menu {
                position: fixed;
                top: 56px;
                right: -100%;
                width: 260px;
                background: rgba(248, 248, 248, 0.98);
                border-radius: 10px;
                box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
                max-height: calc(100vh - 70px);
                overflow-y: auto;
                transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                opacity: 0;
                backdrop-filter: blur(10px);
                z-index: 1000;
            }

            .nav-menu.active {
                right: 5px;
                opacity: 1;
            }

            .nav-menu ul {
                flex-direction: column;
                gap: 0;
                padding: 0;
            }

            .nav-menu ul li {
                width: 100%;
            }

            .nav-menu ul li a {
                padding: 12px 18px;
                font-size: 14px;
                font-weight: 700;
                display: block;
                transition: all 0.2s ease;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .nav-menu ul li a:hover {
                transform: translateX(6px);
            }

            .nav-menu ul li a::after {
                display: none;
            }
            
            /* Remove separator on mobile */
            .nav-menu ul li:last-child::before {
                display: none;
            }

            /* Enhanced Mobile Dropdown - Scrollbar removed */
            .dropdown {
                border-left: none;
            }
            
            .dropdown-toggle {
                justify-content: space-between;
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
                display: flex;
                align-items: center;
                font-weight: 700;
                background: rgba(255, 255, 255, 0.8);
                position: relative;
                padding: 12px 18px 12px 18px;
            }
            
            .dropdown.active .dropdown-toggle {
                background: rgba(0, 123, 255, 0.05);
            }
            
            .dropdown-menu {
                position: static;
                opacity: 0;
                visibility: hidden;
                transform: none;
                box-shadow: none;
                background: linear-gradient(90deg, rgba(0, 123, 255, 0.03) 0%, rgba(0, 123, 255, 0.01) 100%);
                border: none;
                border-radius: 0;
                padding: 0;
                max-height: 0;
                overflow-y: visible; /* No scrollbar */
                transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
                width: 100%;
                backdrop-filter: none;
                z-index: 1;
                display: flex;
                flex-direction: column;
                min-width: unset;
                max-width: unset;
                margin-left: 12px;
                border-left: 2px solid rgba(0, 123, 255, 0.2);
                margin-top: 0;
                margin-bottom: 4px;
            }
            
            .dropdown.active .dropdown-menu {
                max-height: 500px;
                padding: 4px 0 8px 0;
                opacity: 1;
                visibility: visible;
            }
            
            .dropdown-menu::before {
                content: "";
                position: absolute;
                left: -2px;
                top: 0;
                height: 100%;
                width: 2px;
                background: rgba(0, 123, 255, 0.2);
            }
            
            .dropdown-menu li {
                position: relative;
            }
            
            .dropdown-menu a {
                padding: 12px 16px 12px 36px;
                font-size: 13px;
                color: #555;
                transition: all 0.2s ease;
                border-bottom: 1px solid rgba(0, 0, 0, 0.03);
                margin: 0;
                width: 100%;
                position: relative;
                font-weight: 400;
                border-left: none;
            }
            
            .dropdown-menu a::before {
                content: "›";
                position: absolute;
                left: 18px;
                top: 50%;
                transform: translateY(-50%);
                color: rgba(0, 123, 255, 0.5);
                font-size: 14px;
                transition: all 0.2s ease;
            }
            
            .dropdown-menu a:hover {
                padding-left: 40px;
                background: rgba(0, 123, 255, 0.08);
                color: #1f5a28;
                transform: translateX(2px);
            }
            
            .dropdown-menu a:hover::before {
                color: #1f5a28;
                transform: translateY(-50%) translateX(2px);
            }
            
            .dropdown-icon {
                transition: transform 0.3s ease;
                color: rgba(0, 0, 0, 0.5);
                font-size: 0.7em;
            }
            
            .dropdown.active .dropdown-icon {
                transform: rotate(180deg);
                color: #1f5a28;
            }
            
            .dropdown-menu li:last-child a {
                border-bottom: none;
            }
            
            .dropdown-menu li {
                opacity: 0;
                transform: translateX(-4px);
                transition: opacity 0.25s ease, transform 0.25s ease;
            }
            
            .dropdown.active .dropdown-menu li {
                opacity: 1;
                transform: translateX(0);
            }
            
            /* Staggered animation for dropdown items */
            .dropdown.active .dropdown-menu li:nth-child(1) { transition-delay: 0.04s; }
            .dropdown.active .dropdown-menu li:nth-child(2) { transition-delay: 0.08s; }
            .dropdown.active .dropdown-menu li:nth-child(3) { transition-delay: 0.12s; }
            .dropdown.active .dropdown-menu li:nth-child(4) { transition-delay: 0.16s; }
            .dropdown.active .dropdown-menu li:nth-child(5) { transition-delay: 0.2s; }
            .dropdown.active .dropdown-menu li:nth-child(6) { transition-delay: 0.24s; }
        }

        /* Ensure dropdown works on touch devices */
        @media (hover: none) and (min-width: 769px) {
            .dropdown-menu {
                opacity: 0;
                max-height: 0;
                overflow-y: visible;
                transition: opacity 0.25s ease, max-height 0.25s ease;
            }
            
            .dropdown.active .dropdown-menu {
                opacity: 1;
                max-height: 300px;
            }
        }

        /* Force vertical stacking for dropdown */
        @media (min-width: 769px) {
            .dropdown-menu {
                display: flex !important;
                flex-direction: column !important;
            }
            
            .dropdown-menu li {
                display: block !important;
                width: 100% !important;
            }
            
            .dropdown-menu a {
                display: block !important;
                white-space: normal !important;
            }
        }

        /* Override any conflicting styles */
        .dropdown-menu,
        .dropdown-menu ul,
        .dropdown-menu li,
        .dropdown-menu a {
            display: block !important;
            float: none !important;
            clear: both !important;
        }




        

  /* ===== Video Banner Section ===== */
        .slider-section {
            width: 100%;
            height: calc(100vh - 80px);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        /* Dark overlay for better text contrast */
        .video-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        /* Overlay Text */
        .overlay {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #ffffff;
            padding: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .overlay h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .overlay p {
            font-size: 1.2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
        }

        /* Text Animation */
        .animated-text {
            opacity: 0;
            animation: fadeInUp 1s ease-in-out forwards;
        }

        .animated-text:nth-child(1) {
            animation-delay: 0.3s;
        }

        .animated-text:nth-child(2) {
            animation-delay: 0.8s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== BUTTONS STYLED WITH GREEN-GOLD PALETTE ===== */
        .buttons-container {
            position: absolute;
            bottom: 100px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            z-index: 10;
            flex-wrap: wrap;
            padding: 0 20px;
        }

        /* Base button styles */
        .track-shipment-btn,
        .request-quote-btn {
            padding: 0.9rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: inherit;
            letter-spacing: 0.5px;
            text-decoration: none;
        }

        /* Track Shipment Button - Green Base, Gold Accent */
        .track-shipment-btn {
            background: #1f5a28;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(31, 90, 40, 0.3);
            border: 1px solid rgba(245, 176, 66, 0.3);
        }

        .track-shipment-btn i {
            transition: transform 0.3s ease;
            color: #f5b042;
        }

        .track-shipment-btn:hover {
            background: #2a6e34;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(31, 90, 40, 0.4);
        }

        .track-shipment-btn:hover i {
            transform: translateX(5px);
            color: #ffcd7e;
        }

        /* Request Quote Button - Gold Base, Green Accent */
        .request-quote-btn {
            background: #f5b042;
            color: #1a4d1e;
            box-shadow: 0 4px 12px rgba(245, 176, 66, 0.3);
            border: 1px solid rgba(31, 90, 40, 0.2);
        }

        .request-quote-btn i {
            transition: transform 0.3s ease;
            color: #1f5a28;
        }

        .request-quote-btn:hover {
            background: #ffc25c;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(245, 176, 66, 0.4);
        }

        .request-quote-btn:hover i {
            transform: translateX(5px);
            color: #0e3d12;
        }

        /* ===== SCROLL DOWN ARROW INDICATOR ===== */
        .scroll-indicator {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            cursor: pointer;
            text-align: center;
            animation: bounce 2s infinite;
            background: transparent;
            border: none;
            outline: none;
        }

        .scroll-indicator a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: #ffffff;
            font-size: 0.8rem;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            transition: opacity 0.3s;
        }

        .scroll-indicator a:hover {
            opacity: 0.8;
        }

        .scroll-indicator i {
            font-size: 1.6rem;
            animation: arrowMove 1.5s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        @keyframes arrowMove {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(5px);
            }
        }

        /* ===== Responsive Adjustments ===== */
        @media (max-width: 768px) {
            .slider-section {
                height: 100vh;
                min-height: 600px;
            }

            .overlay h2 {
                font-size: 1.8rem;
            }

            .overlay p {
                font-size: 1rem;
                padding: 0 10px;
            }

            .buttons-container {
                bottom: 80px;
                gap: 1rem;
                flex-direction: column;
                align-items: center;
            }

            .track-shipment-btn,
            .request-quote-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
                width: 200px;
                justify-content: center;
            }

            .scroll-indicator {
                bottom: 15px;
            }

            .scroll-indicator i {
                font-size: 1.3rem;
            }

            .scroll-indicator span {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .overlay h2 {
                font-size: 1.5rem;
            }

            .overlay p {
                font-size: 0.85rem;
            }

            .track-shipment-btn,
            .request-quote-btn {
                width: 180px;
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }
        }

        /* For very tall screens, adjust arrow position */
        @media (min-height: 900px) {
            .buttons-container {
                bottom: 120px;
            }
            .scroll-indicator {
                bottom: 35px;
            }
        }


/* ===== TRACK SHIPMENT MODAL (Cross-browser compatible) ===== */
.tracking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    /* Remove backdrop-filter for better compatibility */
    align-items: center;
    justify-content: center;
}

.tracking-modal-content {
    background: #ffffff;
    max-width: 550px;
    width: 90%;
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
    -webkit-animation: modalFadeIn 0.3s ease;
    animation: modalFadeIn 0.3s ease;
    margin: 0 auto;
}

@-webkit-keyframes modalFadeIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.tracking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.tracking-modal-close:hover {
    color: #1f5a28;
}

.tracking-modal-content h3 {
    font-size: 1.8rem;
    color: #1f5a28;
    margin-bottom: 0.5rem;
}

.tracking-modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Input group */
.tracking-input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.tracking-input-group input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #d4e2cc;
    border-radius: 2rem;
    font-size: 1rem;
    outline: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.tracking-input-group input:focus {
    border-color: #f5b042;
    -webkit-box-shadow: 0 0 0 2px rgba(245, 176, 66, 0.2);
    box-shadow: 0 0 0 2px rgba(245, 176, 66, 0.2);
}

.tracking-input-group button {
    background: #1f5a28;
    color: white;
    border: none;
    padding: 0 1.8rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.tracking-input-group button:hover {
    background: #f5b042;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Result area */
.tracking-result {
    margin-top: 1rem;
}

/* Shipment result card */
.shipment-card {
    background: #f8faf5;
    border-radius: 1rem;
    padding: 1.2rem;
    border-left: 5px solid #f5b042;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.shipment-card h4 {
    color: #1f5a28;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.shipment-card p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #1a2e1f;
}

.status-badge {
    background: #1f5a28;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Error message */
.error-message {
    background: #fff1ed;
    color: #c34e2c;
    padding: 0.8rem;
    border-radius: 0.8rem;
    text-align: center;
}

/* Loading spinner */
.loading-spinner {
    text-align: center;
    padding: 1rem;
}

.loading-spinner i {
    font-size: 1.5rem;
    color: #f5b042;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

/* ===== MOBILE RESPONSIVE (max-width: 600px) ===== */
@media (max-width: 600px) {
    .tracking-modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .tracking-modal-content h3 {
        font-size: 1.4rem;
    }

    .tracking-input-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.8rem;
    }

    .tracking-input-group input {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .tracking-input-group button {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0.7rem;
    }

    .shipment-card p {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.2rem;
    }

    .shipment-card p strong {
        min-width: auto;
    }

    .status-badge {
        display: inline-block;
        margin-top: 0.2rem;
    }
}

/* ===== RESPONSIVE FOR TABLETS (max-width: 900px) ===== */
@media (max-width: 900px) and (min-width: 601px) {
    .tracking-modal-content {
        width: 85%;
        max-width: 500px;
    }
}

/* ===== TOUCH DEVICES ===== */
@media (hover: none) and (pointer: coarse) {
    .tracking-input-group button,
    .tracking-modal-close {
        cursor: default;
    }
}

/*========== Services ==========*/
.services {
  max-width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.services p {
  font-size: var(--normal-font-size);
  max-width: 1200px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.card {
  background: #ffffff;
  border-radius: var(--normal-font-size);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px; /* Reduced height */
 
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-image {
  position: relative;
  padding-top: 35.05%; /* 1.85:1 aspect ratio (1/1.85 = 0.5405) */
  overflow: hidden;
}

.card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}
/* Only modify these selectors */
.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Only modify these selectors */
.card h3 {
  flex: 0 0 35%;
  display: flex;
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
  text-align: center; /* Text wrapping center */
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
  margin: 0;
  padding: 0 15px; /* Side padding */
  font-size: 1.125rem;
}

.card p {
  flex: 0 0 65%;
  margin: 0 20px; /* Left/right margin */
  padding: 12px 0;
  width: calc(100% - 40px); /* Account for margins */
}

/* Button Container - Two buttons side by side */
        .button-container {
            display: flex;
            gap: 12px;
            padding: 0 20px 20px 20px;
            margin-top: auto;
        }

        /* WhatsApp Button - Rounded corners to match original */
        .whatsapp-btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 12px;
            background-color: #25D366;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
        }

        .whatsapp-btn:hover {
            background-color: #1da851;
            transform: translateY(-2px);
        }

        .whatsapp-btn i {
            font-size: 1rem;
        }

        /* Email Button - Rounded corners to match original */
        .email-btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 12px;
            background-color: rgba(31, 90, 40, 0.85);
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
        }

        .email-btn:hover {
            background-color: #f5b042;
            transform: translateY(-2px);
        }

        .email-btn i {
            font-size: 1rem;
        }

@media (max-width: 768px) {
  .services {
      padding: 30px 15px;
  }
  
  .services h2 {
      font-size: 2rem;
  }
  
  .service-cards {
      gap: 20px;
      padding: 0;
  }
   .button-container {
                padding: 0 15px 15px 15px;
                gap: 10px;
            }
            
            .whatsapp-btn, .email-btn {
                padding: 8px 10px;
                font-size: 0.8rem;
            }

}

@media (max-width: 480px) {

  .card-content {
      padding: var(--normal-font-size);
  }
  
  .card h3 {
      font-size: 1.2rem;
  }
  
  .card p {
      font-size: 0.9rem;
  }

    .button-container {
                flex-direction: column;
                gap: 8px;
            }
}


    /*========== Why Choose Us ==========*/
  
.why-choose-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.why-choose-us p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.why-choose-us h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  
}


        /* ENHANCED STATS SECTION - Logistics focused with nicer design */
        .stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.8rem;
            margin-top: 1.5rem;
        }

        .stat-item {
            flex: 1;
            min-width: 180px;
            padding: 1.8rem 1rem;
            background: linear-gradient(145deg, #ffffff, #f8fbf5);
            border-radius: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid #e0eed6;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .stat-item:hover {
            transform: translateY(-8px);
            border-color: #f5b042;
            box-shadow: 0 16px 28px rgba(31, 90, 40, 0.1);
        }

        /* Icon styling - adds visual appeal */
        .stat-icon {
            font-size: 2.5rem;
            color: #f5b042;
            margin-bottom: 0.8rem;
        }

        .stat-item h3 {
            font-size: 2.2rem;
            color: #1f5a28;
            margin-bottom: 0.4rem;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .stat-item p {
            color: #4a6b3f;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        /* Different color accents for variety but still professional */
        .stat-item:nth-child(1) .stat-icon { color: #f5b042; }
        .stat-item:nth-child(2) .stat-icon { color: #e09d32; }
        .stat-item:nth-child(3) .stat-icon { color: #f5b042; }
        .stat-item:nth-child(4) .stat-icon { color: #d48d2a; }

        .count {
            display: inline-block;
        }

        @media (max-width: 900px) {
            .stats {
                gap: 1.2rem;
            }
            .stat-item {
                min-width: 160px;
                padding: 1.3rem 0.8rem;
            }
            .stat-item h3 {
                font-size: 1.8rem;
            }
            .stat-icon {
                font-size: 2rem;
            }
        }

        @media (max-width: 700px) {
            .why-choose-us {
                padding: 2rem 1rem;
            }
            .why-choose-us h2 {
                font-size: 1.8rem;
            }
            .stats {
                gap: 1rem;
            }
            .stat-item {
                min-width: 140px;
                padding: 1rem 0.5rem;
            }
        }




/* About section container - NO CARD styling */
        .about-section {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* ===== LEARN MORE ABOUT US SUBSECTION ===== */
        .learn-more-about {
            padding: 2rem 0 2rem 0;
            margin-bottom: 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 0.5rem;
            /* No underline */
            text-decoration: none;
        }

        /* Removed the underline effect completely */
        .section-header h2:after {
            display: none;
        }

        .section-header .subtitle {
            
            font-size: 1.05rem;
           
            margin: 1rem auto 0;
            line-height: 1.5;
        }

        /* about text styling - no cards */
        .about-text {
            max-width: 90%;
            margin: 0 auto;
        }

        .about-text p {
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.6;
            margin-bottom: 1.2rem;
        }

        .about-text .highlight {
            font-size: 1rem;
            font-weight: 600;
            color: #1f5a28;
            border-left: 4px solid #f5b042;
            padding-left: 1rem;
            margin: 1.2rem 0;
            background: transparent;
        }

        .about-stats-mini {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 1.5rem;
            justify-content: flex-start;
        }

        .stat-mini {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .stat-mini i {
            font-size: 1.8rem;
            color: #f5b042;
        }

        .stat-mini div {
            display: flex;
            flex-direction: column;
        }

        .stat-mini .number {
            font-size: 1.4rem;
            font-weight: 800;
            color: #1f5a28;
        }

        .stat-mini .label {
            font-size: 0.8rem;
            color: #6f8f64;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .section-header h2 {
                font-size: 1.8rem;
            }
            .about-stats-mini {
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            body {
                padding: 1rem;
            }
            .learn-more-about {
                padding: 1rem 0;
            }
        }




/* Testimonial Section Container - with unique identifiers */
.testimonials-main-section {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    
}

.testimonials-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials-section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.testimonials-section-header .testimonials-subtitle {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0.8rem auto 0;
    line-height: 1.5;
}

/* Slider Wrapper with arrows positioned absolutely */
.testimonials-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Navigation Arrows - Positioned absolutely to the sides */
.testimonials-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2eedb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.testimonials-prev-arrow {
    left: -20px;
}

.testimonials-next-arrow {
    right: -20px;
}

.testimonials-nav-arrow i {
    font-size: 1.2rem;
    color: #1f5a28;
    transition: all 0.2s;
}

.testimonials-nav-arrow:hover {
    background: #f5b042;
    border-color: #f5b042;
    transform: translateY(-50%) scale(1.05);
}

.testimonials-nav-arrow:hover i {
    color: #ffffff;
}

.testimonials-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Scrollable Slider Container - No arrows inside */
.testimonials-slider-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.testimonials-slider-container::-webkit-scrollbar {
    height: 6px;
}

.testimonials-slider-container::-webkit-scrollbar-track {
    background: #e2eedb;
    border-radius: 10px;
}

.testimonials-slider-container::-webkit-scrollbar-thumb {
    background: #f5b042;
    border-radius: 10px;
}

/* Testimonial Grid - Horizontal scroll */
.testimonials-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: max-content;
    padding: 0.5rem 0;
}

/* Testimonial Card */
.testimonials-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 1.5rem 1.5rem;
    width: 350px;
    flex-shrink: 0;
    border: 1px solid #e2eedb;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.testimonials-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 86, 34, 0.08);
    border-color: #f5b042;
}

/* Quote Icon */
.testimonials-quote-icon {
    font-size: 1.8rem;
    color: #f5b042;
    opacity: 0.5;
    margin-bottom: 0.8rem;
}

/* Testimonial Text */
.testimonials-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #2e4a2c;
    margin-bottom: 1rem;
    font-style: italic;
    flex: 1;
}

/* Client Info */
.testimonials-client-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid #e2eedb;
    padding-top: 0.8rem;
}

.testimonials-client-avatar {
    width: 45px;
    height: 45px;
    background: #eef3ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f5a28;
    border: 2px solid #f5b042;
    flex-shrink: 0;
}

.testimonials-client-details {
    flex: 1;
}

.testimonials-client-name {
    font-weight: 700;
    color: #1f5a28;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.testimonials-client-company {
    font-size: 0.7rem;
    color: #8aab7c;
    font-weight: 500;
}

.testimonials-rating {
    display: flex;
    gap: 0.15rem;
    margin-top: 0.2rem;
}

.testimonials-rating i {
    font-size: 0.65rem;
    color: #f5b042;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 1200px) {
    .testimonials-main-section {
        padding: 0 40px;
    }
    
    .testimonials-prev-arrow {
        left: -24px;
    }
    
    .testimonials-next-arrow {
        right: -24px;
    }
}

@media (max-width: 1100px) {
    .testimonials-card {
        width: 320px;
    }
}

@media (max-width: 900px) {
    .testimonials-main-section {
        padding: 0 15px;
    }
    
    .testimonials-section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-card {
        width: 300px;
        padding: 1.2rem;
    }
    
    .testimonials-text {
        font-size: 0.8rem;
    }
    
    .testimonials-client-name {
        font-size: 0.85rem;
    }
    
    .testimonials-prev-arrow {
        left: -10px;
    }
    
    .testimonials-next-arrow {
        right: -10px;
    }
    
    .testimonials-nav-arrow {
        width: 38px;
        height: 38px;
    }
    
    .testimonials-nav-arrow i {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .testimonials-card {
        width: 280px;
    }
    
    .testimonials-client-avatar {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .testimonials-prev-arrow {
        left: -8px;
    }
    
    .testimonials-next-arrow {
        right: -8px;
    }
    
    .testimonials-nav-arrow {
        width: 34px;
        height: 34px;
    }
}






/* ===== Team Section Styles with unique team-... identifiers ===== */
.team-main-section {
    padding-bottom: 2rem;
}

.team-main-container {
    max-width: 1200px; /* Increased to accommodate 4 cards */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Team Section Header */
.team-header-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-header-subtitle {
    font-size: 1rem;
    font-weight: 500;
}

.team-header-subtitle span {
    font-weight: 600;
}

/* Team Grid - Use CSS Grid for better control */
.team-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 equal columns on desktop */
    gap: 2rem;
    justify-content: center;
}

/* Team Member Card */
.team-card-item {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2eedb;
    display: flex;
    flex-direction: column;
}

.team-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 86, 34, 0.1);
    border-color: #f5b042;
}

/* Member Image Container */
.team-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #eef3ea;
    aspect-ratio: 1 / 1; /* Maintain square ratio, adjust as needed */
}

.team-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.team-card-item:hover .team-member-img {
    transform: scale(1.05);
}

/* Social Icons */
.team-social-links {
    position: absolute;
    right: -60px;
    top: 20px;
    background: rgba(31, 90, 40, 0.85);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.4s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.team-card-item:hover .team-social-links {
    right: 15px;
}

.team-social-links a {
    display: block;
    padding: 0.6rem 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
}

.team-social-links a:hover {
    color: #f5b042;
    transform: translateX(3px);
}

/* Member Info */
.team-info-wrapper {
    padding: 1.5rem 1rem;
    background: #ffffff;
    flex-grow: 1;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f5a28;
    margin-bottom: 0.3rem;
}

.team-member-role {
    font-size: 0.9rem;
    color: #f5b042;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1100px) {
    .team-grid-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
        gap: 1.5rem;
    }
    .team-member-img {
        height: auto;
    }
}

@media (max-width: 768px) {
    .team-main-section {
        padding: 2rem 0;
    }
    .team-header-title {
        font-size: 1.8rem;
    }
    .team-header-subtitle {
        font-size: 1rem;
    }
    .team-grid-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 1.5rem;
    }
    .team-card-item {
        max-width: 380px;
        margin: 0 auto;
        width: 100%;
    }
    .team-member-img {
        height: auto;
    }
    .team-social-links a {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-main-container {
        padding: 0 1rem;
    }
    .team-member-name {
        font-size: 1.1rem;
    }
    .team-member-role {
        font-size: 0.8rem;
    }
    .team-social-links {
        top: 15px;
    }
    .team-card-item:hover .team-social-links {
        right: 10px;
    }
}

        /* Contact Section - Wrapped in section tag */
        .contact-section {
            max-width: 580px;
            width: 100%;
            margin: 0 auto;
            margin-bottom: 3rem;  /* Spacing at the bottom of the section */
        }

        /* Header Section */
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.3px;
        }

        .section-header p {
            font-size: 1rem;
            font-weight: 500;
        }



        /* Card Container */
        .contact-card {
            background: #ffffff;
            border-radius: 2rem;
            padding: 2.2rem;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.02);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(229, 241, 220, 0.8);
        }

        .contact-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 28px 40px -15px rgba(30, 86, 34, 0.15);
        }

        /* Form Group */
        .form-group {
            margin-bottom: 1.4rem;
            position: relative;
        }

        /* Input Field Wrapper with Icon */
        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 1rem;
            color: #8aab7c;
            font-size: 1rem;
            transition: all 0.2s ease;
            pointer-events: none;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1rem 0.9rem 2.6rem;
            border: 1.5px solid #c8dbc0;
            border-radius: 1.2rem;
            font-family: inherit;
            font-size: 0.95rem;
            background: #ffffff;
            transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            color: #1a2e1f;
            font-weight: 500;
        }

        /* Increased contrast for better readability */
        .form-group input,
        .form-group textarea {
            color: #0a2e0d;
            font-weight: 500;
            background: #ffffff;
            border-color: #bdd0b3;
        }

        .form-group textarea {
            padding: 0.9rem 1rem 0.9rem 2.6rem;
            resize: vertical;
            min-height: 110px;
            line-height: 1.5;
        }

        /* Focus State - stronger contrast */
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #f5b042;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(245, 176, 66, 0.15);
        }

        .form-group input:focus + .input-icon,
        .form-group textarea:focus + .input-icon {
            color: #f5b042;
            transform: scale(1.05);
        }

        /* Input hover */
        .form-group input:hover,
        .form-group textarea:hover {
            border-color: #a8c29a;
            background: #ffffff;
        }

        /* Error styling */
        .form-group.error input,
        .form-group.error textarea {
            border-color: #e07c4c;
            background: #fffaf5;
        }

        .error-message {
            font-size: 0.7rem;
            color: #c34e2c;
            margin-top: 0.4rem;
            margin-left: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-weight: 500;
        }

        /* Send Button - SMALLER SIZE with better contrast */
        .submit-btn {
            background: #1f5a28;
            color: white;
            border: none;
            width: auto;
            min-width: 160px;
            padding: 0.7rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 0.5rem;
            font-family: inherit;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 6px rgba(31, 90, 40, 0.2);
        }

        .submit-btn i {
            font-size: 0.85rem;
            transition: transform 0.2s;
        }

        .submit-btn:hover {
            background: #f5b042;
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgba(245, 176, 66, 0.3);
        }

        .submit-btn:hover i {
            transform: translateX(3px);
        }

        .submit-btn:active {
            transform: translateY(1px);
        }

        /* Button container for centering */
        .button-wrapper {
            text-align: center;
            margin-top: 0.2rem;
        }

        /* Loading State */
        .submit-btn.loading {
            background: #8aab7c;
            pointer-events: none;
            opacity: 0.8;
        }

        .submit-btn.loading i {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Success / Status Message - better contrast */
        .status-message {
            margin-top: 1.2rem;
            padding: 0.8rem 1rem;
            border-radius: 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            animation: fadeSlideUp 0.3s ease;
        }

        .status-success {
            background: #e9f6e6;
            color: #1a5e24;
            border-left: 4px solid #1f5a28;
        }

        .status-error {
            background: #fff1ed;
            color: #b8451e;
            border-left: 4px solid #e07c4c;
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(8px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Form note - better contrast */
        .form-note {
            text-align: center;
            font-size: 0.7rem;
            color: #6f8f64;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 500;
        }

        /* Placeholder styling - improved readability */
        ::placeholder {
            color: #a8bf9c;
            font-weight: 400;
            font-size: 0.9rem;
        }

        input:-webkit-autofill,
        input:-webkit-autofill:focus {
            transition: background-color 600000s 0s, color 600000s 0s;
        }

        /* Responsive */
        @media (max-width: 550px) {
            body {
                padding: 1.2rem;
            }
            .contact-section {
                margin-bottom: 2rem;
            }
            .contact-card {
                padding: 1.6rem;
                border-radius: 1.5rem;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
            .form-group input,
            .form-group textarea {
                padding: 0.8rem 1rem 0.8rem 2.4rem;
                font-size: 0.9rem;
            }
            .submit-btn {
                min-width: 140px;
                padding: 0.6rem 1.3rem;
                font-size: 0.85rem;
            }
            .input-icon {
                font-size: 0.9rem;
                left: 0.85rem;
            }
        }

        @media (max-width: 400px) {
            .contact-card {
                padding: 1.2rem;
            }
            .submit-btn {
                min-width: 130px;
                padding: 0.55rem 1.2rem;
            }
        }
/* Animated Checkmark Success Message */
.success-checkmark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeSlideUp 0.4s ease;
}

.checkmark-circle {
    width: 60px;
    height: 60px;
    background: #1f5a28;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    animation: scaleIn 0.4s ease;
}

.checkmark-circle i {
    font-size: 2rem;
    color: white;
}

.success-checkmark p {
    font-size: 1rem;
    font-weight: 600;
    color: #1f5a28;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Fade out animation */
.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }
}
        

  /* ===== CHAT WIDGET STYLES ===== */
        .chat-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }

        /* Chat Button (Closed State) */
        .chat-button {
            width: 60px;
            height: 60px;
            background: #1f5a28;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: none;
            outline: none;
        }

        .chat-button i {
            font-size: 28px;
            color: white;
        }

        .chat-button:hover {
            transform: scale(1.05);
            background: #f5b042;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        /* Chat Container (Open State) */
        .chat-container {
            width: 350px;
            height: 500px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: all 0.3s ease;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Chat Header */
        .chat-header {
            background: #1f5a28;
            color: white;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h3 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .chat-header h3 i {
            font-size: 18px;
        }

        .close-chat {
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.2s;
        }

        .close-chat:hover {
            opacity: 0.8;
        }

        /* Chat Messages Area */
        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 15px;
            background: #f8faf5;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Message Bubbles */
        .message {
            max-width: 85%;
            padding: 10px 12px;
            border-radius: 15px;
            font-size: 14px;
            line-height: 1.4;
            word-wrap: break-word;
        }

        .message.user {
            background: #1f5a28;
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .message.agent {
            background: white;
            color: #1a2e1f;
            align-self: flex-start;
            border-bottom-left-radius: 4px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2eedb;
        }

        .message.system {
            background: #fff3e0;
            color: #a45f10;
            align-self: flex-start;
            border-left: 3px solid #f5b042;
            font-size: 12px;
        }

        .message.system strong {
            display: block;
            margin-bottom: 5px;
            color: #1f5a28;
        }

        /* Typing Indicator */
        .typing-indicator {
            display: flex;
            gap: 4px;
            padding: 8px 12px;
            background: white;
            border-radius: 15px;
            align-self: flex-start;
            border: 1px solid #e2eedb;
        }

        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: #8aab7c;
            border-radius: 50%;
            animation: typing 1.4s infinite ease-in-out;
        }

        .typing-indicator span:nth-child(1) { animation-delay: 0s; }
        .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
        .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes typing {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.5;
            }
            30% {
                transform: translateY(-5px);
                opacity: 1;
            }
        }

        /* Chat Input Area */
        .chat-input-area {
            padding: 15px;
            background: white;
            border-top: 1px solid #e2eedb;
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }

        .chat-input-area textarea {
            flex: 1;
            padding: 10px 12px;
            border: 1px solid #d4e2cc;
            border-radius: 20px;
            font-family: inherit;
            font-size: 14px;
            resize: none;
            outline: none;
            transition: border-color 0.2s;
            max-height: 80px;
        }

        .chat-input-area textarea:focus {
            border-color: #f5b042;
        }

        .send-btn {
            background: #1f5a28;
            border: none;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .send-btn i {
            color: white;
            font-size: 16px;
        }

        .send-btn:hover {
            background: #f5b042;
            transform: scale(1.05);
        }

        .send-btn:disabled {
            background: #c0d4b8;
            cursor: not-allowed;
        }

        /* Hide/Show States */
        .hidden {
            display: none;
        }

        /* Welcome Message */
        .welcome-message {
            text-align: center;
            padding: 10px;
            font-size: 12px;
            color: #8aab7c;
        }

        /* Scrollbar Styling */
        .chat-messages::-webkit-scrollbar {
            width: 5px;
        }

        .chat-messages::-webkit-scrollbar-track {
            background: #eef3ea;
            border-radius: 10px;
        }

        .chat-messages::-webkit-scrollbar-thumb {
            background: #c0d4b8;
            border-radius: 10px;
        }

        /* Responsive */
        @media (max-width: 480px) {
            .chat-container {
                width: 320px;
                height: 480px;
                bottom: 10px;
                right: 10px;
            }
            .chat-button {
                width: 55px;
                height: 55px;
            }
        }




/* Our Values Section Container - Unique identifiers */
.our-values-main-section {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 60px;
    padding: 0 20px;
}

/* Section Header */
.our-values-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.our-values-section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.3px;
}

.our-values-section-header p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Slider Container with arrows positioned absolutely */
.our-values-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Navigation Arrows - Positioned absolutely to the sides */
.our-values-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e2eedb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.our-values-prev-arrow {
    left: -20px;
}

.our-values-next-arrow {
    right: -20px;
}

.our-values-nav-arrow i {
    font-size: 1.2rem;
    color: #1f5a28;
    transition: all 0.2s;
}

.our-values-nav-arrow:hover {
    background: #f5b042;
    border-color: #f5b042;
    transform: translateY(-50%) scale(1.05);
}

.our-values-nav-arrow:hover i {
    color: #ffffff;
}

/* Scrollable Values Container - No arrows inside */
.our-values-scroll-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.our-values-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.our-values-scroll-container::-webkit-scrollbar-track {
    background: #e2eedb;
    border-radius: 10px;
}

.our-values-scroll-container::-webkit-scrollbar-thumb {
    background: #f5b042;
    border-radius: 10px;
}

/* Values Grid - Horizontal scroll */
.our-values-grid {
    display: flex;
    flex-direction: row;
    gap: 1.8rem;
    width: max-content;
    padding: 0.5rem 0;
}

/* Value Card */
.our-value-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.8rem;
    width: 300px;
    flex-shrink: 0;
    border: 1px solid #e2eedb;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.our-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(31, 90, 40, 0.12);
    border-color: #f5b042;
}

/* Icon Container */
.our-value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eef3ea, #e2ebdb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
}

.our-value-card:hover .our-value-icon {
    background: #f5b042;
    transform: scale(1.05);
}

.our-value-icon i {
    font-size: 2.5rem;
    color: #1f5a28;
    transition: all 0.3s ease;
}

.our-value-card:hover .our-value-icon i {
    color: white;
}

.our-value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f5a28;
    margin-bottom: 0.8rem;
}

.our-value-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4a6b3f;
    margin-bottom: 1rem;
}

/* Scroll Hint */
.our-values-scroll-hint {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #8aab7c;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.our-values-scroll-hint i {
    font-size: 0.8rem;
    animation: ourValuesScrollBounce 1.5s infinite;
}

@keyframes ourValuesScrollBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .our-values-main-section {
        padding: 0 15px;
    }
    
    .our-values-section-header h2 {
        font-size: 1.8rem;
    }
    
    .our-value-card {
        width: 280px;
        padding: 1.5rem;
    }
    
    .our-value-icon {
        width: 65px;
        height: 65px;
    }
    
    .our-value-icon i {
        font-size: 2rem;
    }
    
    .our-value-title {
        font-size: 1.1rem;
    }
    
    .our-value-description {
        font-size: 0.8rem;
    }
    
    .our-values-prev-arrow {
        left: -10px;
    }
    
    .our-values-next-arrow {
        right: -10px;
    }
    
    .our-values-nav-arrow {
        width: 38px;
        height: 38px;
    }
    
    .our-values-nav-arrow i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .our-value-card {
        width: 260px;
        padding: 1.2rem;
    }
    
    .our-value-icon {
        width: 55px;
        height: 55px;
    }
    
    .our-value-icon i {
        font-size: 1.6rem;
    }
    
    .our-value-title {
        font-size: 1rem;
    }
    
    .our-value-description {
        font-size: 0.75rem;
    }
    
    .our-values-prev-arrow {
        left: -8px;
    }
    
    .our-values-next-arrow {
        right: -8px;
    }
    
    .our-values-nav-arrow {
        width: 34px;
        height: 34px;
    }
}

/* Ensure arrows stay on left/right */
.our-values-slider-container {
    position: relative;
    display: flex;
    flex-direction: row;  /* Force horizontal layout */
    align-items: center;
    width: 100%;
}

.our-values-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* ... rest of arrow styles ... */
}

/* Remove any flex-direction column on parent */
.our-values-main-section {
    display: block;  /* Not flex */
}






  /* ---------- FOOTER (solid green, no gradient) ---------- */
        .footer {
            background-color: #1f5a28;   /* single unified rich green */
            color: #f0f9ec;
            padding: 2.8rem 0 1.2rem 0;
            font-size: 0.92rem;
            border-top: 4px solid #f5cd6d;   /* warm gold accent stays minimal, main bg solid */
        }

        /* main container for all rows */
        .footer-container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 1.8rem;
        }

        /* ----- first row: flexible grid (no col/row prefixes, unique identifiers) ----- */
        .info-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            margin-bottom: 1rem;
        }

        .info-card {
            flex: 1 1 220px;
            min-width: 200px;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        /* icon styling */
        .footer-icon {
            font-size: 1.7rem;
            color: #f5dd9b;
            line-height: 1.2;
            flex-shrink: 0;
        }

        .info-text h4 {
            font-size: 1.18rem;
            font-weight: 600;
            margin-bottom: 0.6rem;
            letter-spacing: 0.3px;
            color: #fff7e0;
        }

        .info-text p {
            margin-bottom: 0.25rem;
            line-height: 1.45;
            color: #e2f5da;
        }

        /* Opening Hours specific styling - Department separation */
        .info-text .department-hours {
            margin-bottom: 0.75rem;
        }

        .info-text .department-hours:last-child {
            margin-bottom: 0;
        }

        .info-text .department-badge {
            font-size: 0.85rem;
            font-weight: 600;
            color: #f5cd6d;
            margin-bottom: 0.25rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .info-text .department-badge i {
            font-size: 0.7rem;
        }

        .info-text .hours-detail {
            font-size: 0.85rem;
            line-height: 1.5;
            color: #e2f5da;
            padding-left: 0.5rem;
            border-left: 2px solid #f5cd6d;
            margin-top: 0.2rem;
        }

        .info-text .hours-detail strong {
            color: #fff7e0;
            font-weight: 600;
        }

        /* Divider between departments */
        .dept-divider {
            height: 1px;
            background: rgba(245, 205, 109, 0.3);
            margin: 0.6rem 0;
        }

        /* contact links (phone & email) styling — clickable */
        .contact-link {
            color: #f9f2cf;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
            display: inline-block;
        }

        .contact-link:hover {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        /* social links styling */
        .social-links-group {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #2f7738;
            border-radius: 50%;
            font-size: 1.25rem;
            color: #fef9e6;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background-color: #f5cd6d;
            color: #1f5a28;
            transform: translateY(-3px);
        }

        /* second row: copyright line */
        .copyright-row {
            text-align: center;
            padding-top: 1.8rem;
            margin-top: 1rem;
            border-top: 1px solid rgba(245, 205, 109, 0.3);
            font-size: 0.85rem;
            color: #eef7e9;
        }

        .copyright-row strong {
            color: #fff5da;
            font-weight: 600;
        }

        /* third row: "designed by" credit */
        .credit-row {
            text-align: center;
            padding-top: 0.7rem;
            padding-bottom: 0.4rem;
            font-size: 0.8rem;
            color: #d4e8ca;
        }

        .credit-row a {
            color: #ffe6a3;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .credit-row a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        /* responsive adjustments */
        @media (max-width: 820px) {
            .info-grid {
                gap: 1.5rem;
            }
            .info-card {
                flex: 1 1 45%;
            }
            .footer-container {
                padding: 0 1.5rem;
            }
        }

        @media (max-width: 600px) {
            .info-card {
                flex: 1 1 100%;
            }
            .footer {
                padding: 2rem 0 1rem;
            }
            .footer-icon {
                font-size: 1.5rem;
            }
        }

        /* simple micro interaction */
        .info-card:hover .footer-icon {
            transform: scale(1.02);
            transition: transform 0.1s ease;
        }
















        /* ===== PAYMENTS PAGE – unique identifiers (payments-page-*) ===== */

/* Hero */
.payments-page-hero {
    background: linear-gradient(135deg, #1f5a28 0%, #2f7738 100%);
    color: #fff;
    padding: 3.5rem 1.5rem 2.8rem 1.5rem;
    text-align: center;
    border-bottom: 4px solid #f5cd6d;
}
.payments-page-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    letter-spacing: -0.5px;
}
.payments-page-hero-content h1 i {
    color: #f5cd6d;
    margin-right: 10px;
}
.payments-page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 620px;
    margin: 0 auto;
}
.payments-page-breadcrumb {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.8;
}
.payments-page-breadcrumb a {
    color: #f5cd6d;
    text-decoration: none;
}
.payments-page-breadcrumb a:hover {
    text-decoration: underline;
}

/* Main container */
.payments-page-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
}

.payments-page-intro {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 2.8rem auto;
}
.payments-page-intro h2 {
    font-size: 1.8rem;
    color: #1f5a28;
    margin-bottom: 0.6rem;
}
.payments-page-intro h2 i {
    color: #f5cd6d;
    margin-right: 8px;
}
.payments-page-intro p {
    color: #555;
    font-size: 1.05rem;
}

/* Grid */
.payments-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

/* Cards */
.payments-page-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    padding: 2rem 1.8rem 2rem 1.8rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #f0f5ed;
    position: relative;
    overflow: hidden;
}
.payments-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
}

.payments-page-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5cd6d;
    color: #1f5a28;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.9rem;
    border-radius: 30px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.payments-page-icon {
    font-size: 2.6rem;
    color: #1f5a28;
    margin-bottom: 0.6rem;
    display: inline-block;
    background: rgba(31, 90, 40, 0.08);
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
}

.payments-page-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f5a28;
    margin: 0.2rem 0 0.4rem 0;
}

.payments-page-sub-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 0.8rem;
}

.payments-page-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f5ed;
    font-size: 0.95rem;
    gap: 0.5rem;
}
.payments-page-detail-row:last-of-type {
    border-bottom: none;
}

.payments-page-label {
    font-weight: 500;
    color: #444;
    flex-shrink: 0;
}
.payments-page-value {
    font-weight: 600;
    color: #1f5a28;
    text-align: right;
    word-break: break-word;
}
.payments-page-value.payments-page-highlight {
    color: #c77d1e;
    background: #fef6e6;
    padding: 0.1rem 0.6rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Copy button */
.payments-page-copy-btn {
    background: none;
    border: none;
    color: #1f5a28;
    cursor: pointer;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.payments-page-copy-btn:hover {
    background: rgba(31, 90, 40, 0.08);
}
.payments-page-copy-btn.payments-page-copied {
    color: #f5cd6d;
}
.payments-page-copy-btn i {
    font-size: 0.8rem;
}

/* PayNow QR */
.payments-page-qr-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.4rem 0 0.8rem 0;
}
.payments-page-qr-placeholder {
    width: 140px;
    height: 140px;
    background: #f4f7f2;
    border: 2px dashed #c0d4b8;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8aab7c;
    font-size: 0.8rem;
    gap: 6px;
    transition: background 0.2s;
}
.payments-page-qr-placeholder i {
    font-size: 3rem;
    color: #1f5a28;
    opacity: 0.3;
}
.payments-page-qr-placeholder span {
    font-weight: 500;
}
.payments-page-qr-placeholder small {
    font-size: 0.65rem;
    opacity: 0.7;
}

.payments-page-paynow-detail {
    margin-top: 0.8rem;
    text-align: center;
    font-size: 0.9rem;
    color: #444;
}
.payments-page-paynow-detail strong {
    color: #1f5a28;
}

/* Payment note */
.payments-page-note {
    margin-top: 2.8rem;
    background: #f8faf5;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    border-left: 4px solid #f5cd6d;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.payments-page-note i {
    font-size: 1.6rem;
    color: #f5cd6d;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.payments-page-note p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
}
.payments-page-note p strong {
    color: #1f5a28;
}

/* Responsive */
@media (max-width: 820px) {
    .payments-page-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    .payments-page-hero-content h1 {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .payments-page-card {
        padding: 1.5rem;
    }
    .payments-page-detail-row {
        flex-wrap: wrap;
        gap: 0.2rem;
    }
    .payments-page-detail-row .payments-page-value {
        text-align: left;
        width: 100%;
    }
    .payments-page-detail-row .payments-page-copy-btn {
        margin-left: auto;
    }
    .payments-page-note {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* optional – if you want to keep badge styling in CSS */
.payments-page-badge.usd-badge {
    background: #2e7d32;
    color: #fff;
}
.payments-page-badge.zig-badge {
    background: #f9a825;
    color: #1f2a1e;
}

/* ===== PAYMENT IMAGE ===== */
.payments-page-image-container {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
}

.payments-page-image {
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Controls the height while maintaining aspect ratio */
    width: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f5ed;
    object-fit: contain;
    background: #f8faf5;
    padding: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payments-page-image:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .payments-page-image {
        max-height: 160px;
    }
}

@media (max-width: 480px) {
    .payments-page-image {
        max-height: 120px;
    }
    .payments-page-image-container {
        margin-top: 1.8rem;
    }
}








/* ===== SFAAZ RATES PAGE – unique identifiers (sfaaz-page-*) ===== */

/* Hero */
.sfaaz-page-hero {
    background: linear-gradient(135deg, #1f5a28 0%, #2f7738 100%);
    color: #fff;
    padding: 3.5rem 1.5rem 2.8rem 1.5rem;
    text-align: center;
    border-bottom: 4px solid #f5cd6d;
}
.sfaaz-page-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    letter-spacing: -0.5px;
}
.sfaaz-page-hero-content h1 i {
    color: #f5cd6d;
    margin-right: 10px;
}
.sfaaz-page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 620px;
    margin: 0 auto;
}
.sfaaz-page-breadcrumb {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.8;
}
.sfaaz-page-breadcrumb a {
    color: #f5cd6d;
    text-decoration: none;
}
.sfaaz-page-breadcrumb a:hover {
    text-decoration: underline;
}

/* Main container */
.sfaaz-page-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3rem;
}

/* Download bar */
.sfaaz-page-download-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: #f8faf5;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e2eedb;
}
.sfaaz-page-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #1f5a28;
    color: #fff;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}
.sfaaz-page-download-btn:hover {
    background: #16431f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 90, 40, 0.3);
}
.sfaaz-page-download-btn i {
    font-size: 1.2rem;
}
.sfaaz-page-download-info {
    color: #555;
    font-size: 0.9rem;
}
.sfaaz-page-download-info i {
    color: #8aab7c;
    margin-right: 4px;
}

/* Intro note */
.sfaaz-page-intro {
    margin-bottom: 2.5rem;
}
.sfaaz-page-note-box {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: #fef9f0;
    border-left: 4px solid #f5cd6d;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: #333;
}
.sfaaz-page-note-box i {
    color: #f5cd6d;
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Sections */
.sfaaz-page-section {
    margin-bottom: 2.8rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f5ed;
}
.sfaaz-page-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f5a28;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f5ed;
}
.sfaaz-page-section-number {
    display: inline-block;
    background: #1f5a28;
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    font-size: 0.9rem;
    margin-right: 0.6rem;
}

/* Subsection */
.sfaaz-page-subsection {
    margin-bottom: 1.8rem;
}
.sfaaz-page-subsection:last-child {
    margin-bottom: 0;
}
.sfaaz-page-subsection-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f5a28;
    margin: 0 0 1rem 0;
}
.sfaaz-page-subsection-sub {
    font-weight: 400;
    color: #888;
    font-size: 0.85rem;
}

/* Rate grid – 3 columns */
.sfaaz-page-rate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}
.sfaaz-page-rate-card {
    background: #f8faf5;
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e2eedb;
}
.sfaaz-page-rate-header {
    margin-bottom: 0.6rem;
}
.sfaaz-page-rate-label {
    font-weight: 700;
    color: #1f5a28;
    font-size: 1.05rem;
}
.sfaaz-page-rate-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.sfaaz-page-rate-desc {
    color: #555;
    font-size: 0.9rem;
}
.sfaaz-page-rate-amounts {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.sfaaz-page-rate-min {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
}
.sfaaz-page-rate-max {
    color: #c62828;
    font-weight: 600;
    font-size: 0.9rem;
}
.sfaaz-page-rate-table {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.2rem;
}
.sfaaz-page-rate-row {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    border-bottom: 1px dashed #dce8d4;
    font-size: 0.9rem;
}
.sfaaz-page-rate-row:last-child {
    border-bottom: none;
}
.sfaaz-page-rate-range {
    color: #333;
}
.sfaaz-page-rate-amount {
    font-weight: 600;
    color: #1f5a28;
}

/* Charges grid – 2 columns */
.sfaaz-page-charges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}
.sfaaz-page-charge-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid #f0f5ed;
    gap: 1rem;
}
.sfaaz-page-charge-label {
    color: #333;
    font-size: 0.95rem;
}
.sfaaz-page-charge-amount {
    font-weight: 600;
    color: #1f5a28;
    text-align: right;
    white-space: nowrap;
    font-size: 0.95rem;
}

/* Single rate */
.sfaaz-page-single-rate {
    text-align: center;
    padding: 1rem;
}
.sfaaz-page-single-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1f5a28;
    background: #f0f5ed;
    padding: 0.3rem 2.5rem;
    border-radius: 8px;
    display: inline-block;
}

/* Misc grid – single column with more detail */
.sfaaz-page-misc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1.5rem;
}
.sfaaz-page-misc-grid .sfaaz-page-charge-item {
    padding: 0.4rem 0.8rem;
}

/* Weight grid – 3 columns */
.sfaaz-page-weight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}
.sfaaz-page-weight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1rem;
    background: #f8faf5;
    border-radius: 8px;
    border: 1px solid #e2eedb;
}
.sfaaz-page-weight-range {
    color: #333;
    font-weight: 500;
}
.sfaaz-page-weight-amount {
    font-weight: 600;
    color: #1f5a28;
}
.sfaaz-page-weight-special {
    background: #fef9f0;
    border-color: #f5cd6d;
}
.sfaaz-page-weight-special .sfaaz-page-weight-amount {
    color: #c77d1e;
}

/* Responsive */
@media (max-width: 820px) {
    .sfaaz-page-hero-content h1 {
        font-size: 2rem;
    }
    .sfaaz-page-rate-grid {
        grid-template-columns: 1fr;
    }
    .sfaaz-page-charges-grid {
        grid-template-columns: 1fr;
    }
    .sfaaz-page-misc-grid {
        grid-template-columns: 1fr;
    }
    .sfaaz-page-weight-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sfaaz-page-section {
        padding: 1.2rem;
    }
    .sfaaz-page-download-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .sfaaz-page-download-btn {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .sfaaz-page-weight-grid {
        grid-template-columns: 1fr;
    }
    .sfaaz-page-charge-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .sfaaz-page-charge-amount {
        text-align: left;
        white-space: normal;
    }
    .sfaaz-page-rate-row {
        flex-wrap: wrap;
        gap: 0.2rem;
    }
}



