/* Courier Tracking & Recovery Portal Master CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #070708;
    --bg-card: rgba(24, 24, 27, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #a1a1aa;
    
    /* Brand Accent Colors (TrackMate Orange) */
    --primary: #f26522;
    --primary-glow: rgba(242, 101, 34, 0.3);
    --primary-dark: #d84f0e;
    --secondary: #10b981;
    
    /* Status Colors */
    --status-transit: #f26522;      /* Orange */
    --status-verified: #f59e0b;     /* Amber Warning */
    --status-suspended: #ef4444;    /* Red Error */
    --status-missing: #a855f7;      /* Purple Lost */
    --status-delivered: #10b981;    /* Green Success */

    /* Font Families */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0 !important; /* Force 0 border-radius globally */
}

/* Global Premium Thin Description Paragraphs */
p, 
.section-header p, 
.feature-card p, 
.resolution-body p, 
.footer-info p,
.timeline-notes {
    font-size: 13px !important;
    font-weight: 300 !important; /* light / thin style */
    color: var(--text-muted) !important;
    line-height: 1.65 !important;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 600px;
    background: radial-gradient(circle at 50% -20%, rgba(59, 130, 246, 0.15) 0%, rgba(9, 13, 22, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Shared Header/Navbar */
header {
    background: #050505;
    border-bottom: 1px solid #1c1c1e;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

.nav-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.nav-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* Mobile Toggle (CSS Only Drawer or Script Triggered) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
}

/* Hero Tracker Section */
.hero {
    padding: 80px 0 60px 0;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 span {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Search Box Tracker Container */
.tracker-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 8px;
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255,255,255,0.05) inset;
    gap: 8px;
}

.tracker-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-size: 16px;
    padding: 16px 20px;
    font-family: var(--font-body);
}

.tracker-box input::placeholder {
    color: var(--text-muted);
}

.tracker-box button {
    background: var(--primary);
    border: none;
    outline: none;
    color: #fff;
    padding: 16px 32px;
    font-size: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tracker-box button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* Main Features Grid */
.features {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-card.unverified:hover::before { background: var(--status-verified); }
.feature-card.suspended:hover::before { background: var(--status-suspended); }
.feature-card.missing:hover::before { background: var(--status-missing); }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.feature-card.unverified .feature-icon { background: rgba(245, 158, 11, 0.1); color: var(--status-verified); }
.feature-card.suspended .feature-icon { background: rgba(239, 68, 68, 0.1); color: var(--status-suspended); }
.feature-card.missing .feature-icon { background: rgba(168, 85, 247, 0.1); color: var(--status-missing); }

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

/* Tracking Details Layout */
.tracking-layout {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
}

/* Package Main Details Card */
.tracking-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

.tracking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.tracking-title h2 {
    font-size: 24px;
    margin-bottom: 4px;
}

.tracking-title span {
    font-family: monospace;
    font-size: 16px;
    color: var(--text-muted);
}

.status-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-badge.in-transit { background: rgba(59, 130, 246, 0.12); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.status-badge.pending-verification { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.status-badge.address-suspended { background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.status-badge.missing { background: rgba(168, 85, 247, 0.12); color: #c084fc; border: 1px solid rgba(168, 85, 247, 0.3); }
.status-badge.delivered { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }

/* Details Grid */
.details-table-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.details-item label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.details-item p {
    font-size: 15px;
    font-weight: 500;
}

/* Critical Resolution Panel */
.resolution-panel {
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.resolution-panel.address-suspended {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(9, 13, 22, 0) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.resolution-panel.pending-verification {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(9, 13, 22, 0) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.resolution-panel.missing {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(9, 13, 22, 0) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.resolution-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.resolution-icon {
    font-size: 28px;
}
.resolution-panel.address-suspended .resolution-icon { color: var(--status-suspended); }
.resolution-panel.pending-verification .resolution-icon { color: var(--status-verified); }
.resolution-panel.missing .resolution-icon { color: var(--status-missing); }

.resolution-header h3 {
    font-size: 20px;
}

.resolution-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    outline: none;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.4);
    transition: all 0.2s ease;
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.03);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    font-size: 14px;
    color: var(--text-muted);
}

.file-upload-text span {
    color: var(--primary);
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.resolution-panel.address-suspended .btn-submit { background: #ef4444; }
.resolution-panel.address-suspended .btn-submit:hover { background: #dc2626; box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25); }

.resolution-panel.pending-verification .btn-submit { background: #f59e0b; }
.resolution-panel.pending-verification .btn-submit:hover { background: #d97706; box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25); }

.resolution-panel.missing .btn-submit { background: #a855f7; }
.resolution-panel.missing .btn-submit:hover { background: #9333ea; box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25); }

/* Interactive Vertical Timeline */
.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.timeline-card h3 {
    font-size: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255,255,255,0.08);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

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

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid rgba(255,255,255,0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item.active .timeline-dot {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    background: var(--primary);
}

.timeline-item.issue .timeline-dot {
    border-color: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
    background: #ef4444;
}

.timeline-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.timeline-notes {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* Footer Styles */
footer {
    background: #090c15;
    border-top: 2px solid var(--primary);
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

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

.footer-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
    max-width: 320px;
}

.footer-info div a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted) !important;
    transition: all 0.2s ease;
}

.footer-info div a:hover {
    background: var(--primary);
    color: #ffffff !important;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

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

.footer-column ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

/* Notification banner */
.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .tracking-layout {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    .nav-menu {
        display: none; /* Can implement slide menu or keep simple */
    }
    .menu-toggle {
        display: flex;
    }
    .tracker-box {
        flex-direction: column;
        padding: 12px;
        background: var(--bg-card);
    }
    .tracker-box input {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    .tracker-box button {
        width: 100%;
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .details-table-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MOCKUP DESIGN ADAPTATION (TRACKMATE)
   ========================================================================== */

/* Premium Two-Column Hero */
.hero-premium {
    position: relative;
    padding: 80px 0 90px 0;
    background-color: #0b0c10;
    background-image: radial-gradient(circle at 80% 20%, rgba(242, 101, 34, 0.1) 0%, rgba(9, 13, 22, 0) 60%),
                      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='90' viewBox='0 0 52 90'%3E%3Cpath d='M26 0L0 15v30l26 15 26-15V15L26 0zM0 75v15l26-15 26 15v-15' fill='none' stroke='%231f242e' stroke-width='1.2'/%3E%3C/svg%3E");
    border-bottom: 1px solid rgba(255,255,255,0.03);
    overflow: hidden;
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
}

.hero-premium-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.hero-premium-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.hero-premium-title span {
    background: linear-gradient(135deg, #ff7e40 0%, #f26522 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-premium-subtitle {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 500px;
    line-height: 1.65;
}

.hero-premium-features {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-feature-badge {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-feature-badge i {
    color: var(--primary);
}

.hero-premium-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(242, 101, 34, 0.1);
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(24, 24, 27, 0.85);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 5;
}

.floating-badge.badge-top {
    top: 20px;
    left: -20px;
    animation-delay: 0.5s;
}

.floating-badge.badge-bottom {
    bottom: 30px;
    right: -10px;
    animation-delay: 1.5s;
}

.badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.badge-icon.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.badge-icon.orange {
    background: rgba(242, 101, 34, 0.15);
    color: var(--primary);
}

.badge-info h5 {
    font-size: 13px;
    margin: 0 0 2px 0;
    font-weight: 700;
    color: #ffffff;
}

.badge-info p {
    font-size: 11px;
    margin: 0;
    color: var(--text-muted);
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Responsive adjustment for new hero */
@media (max-width: 992px) {
    .hero-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-premium-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-premium-features {
        justify-content: center;
    }
    .floating-badge.badge-top {
        left: 10px;
    }
    .floating-badge.badge-bottom {
        right: 10px;
    }
}

.hero-anniversary-img-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-premium {
        padding: 40px 0 50px 0;
    }
    .hero-premium-title {
        font-size: 32px;
    }
    /* Mobile full width anniversary logo with minimum padding */
    .hero-anniversary-img-wrap {
        margin: 0 -24px 20px -24px !important;
        width: calc(100% + 48px) !important;
        padding: 0 16px !important;
    }
    .hero-anniversary-img-wrap img {
        max-width: 100% !important;
        width: 100% !important;
    }
    /* Mobile full width edge-to-edge tracker card */
    .hero-premium-left .premium-tracker-card {
        margin: 12px -24px 0 -24px !important;
        width: calc(100% + 48px) !important;
        max-width: calc(100% + 48px) !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }
    .hero-premium-left .premium-tracker-card .tracker-card-orange-header {
        border-radius: 0 !important;
        padding: 24px 16px !important;
    }
    .hero-premium-left .premium-tracker-card .tracker-card-body {
        padding: 15px !important;
    }
}

/* Premium Tracker Card Box (White Card + Orange Header) */
.premium-tracker-card {
    max-width: 500px;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
    background: #ffffff;
    border: 1px solid #1e293b;
}

.tracker-card-orange-header {
    background: #f26522;
    padding: 24px 20px;
    text-align: center;
    color: #ffffff;
    border-bottom: 4px solid rgba(0,0,0,0.1);
}

.tracker-card-orange-header i {
    font-size: 40px;
    margin-bottom: 12px;
    color: #ffffff;
    display: inline-block;
}

.tracker-card-orange-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.tracker-card-body {
    background: #ffffff;
    padding: 40px;
    color: #1f2937;
}

/* Tabs styling */
.tracker-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.tracker-tab-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #9ca3af;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    background: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    font-family: var(--font-heading);
}

.tracker-tab-btn.active {
    color: #f26522;
    border-bottom: 3px solid #f26522;
}

/* Form Label styles inside tracker card */
.tracker-card-body label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tracker-card-body select, .tracker-card-body input[type="text"] {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    border-radius: 0px;
    padding: 14px 16px;
    font-size: 13.5px;
    font-family: var(--font-body);
    margin-bottom: 24px;
    transition: all 0.2s ease;
}

.tracker-card-body select:focus, .tracker-card-body input[type="text"]:focus {
    border-color: #f26522;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.15);
    outline: none;
}

/* reCAPTCHA widget mockup */
.captcha-box {
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 0px;
    height: 74px;
    width: 100%;
    max-width: 304px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.captcha-box:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.captcha-box.error-state {
    border-color: #ef4444 !important;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

.captcha-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-checkbox-wrap {
    position: relative;
    width: 24px;
    height: 24px;
}

.captcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #c1c1c1;
    background: #fff;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.captcha-checkbox:hover {
    border-color: #b2b2b2;
}

.captcha-checkbox.checked {
    border-color: #4ba64f;
}

.captcha-checkbox i {
    color: #009b00;
    font-size: 13px;
    display: none;
}

.captcha-checkbox.checked i {
    display: block;
    animation: checkFade 0.15s ease-in;
}

.captcha-text {
    font-size: 14px;
    font-family: Roboto, Arial, sans-serif;
    color: #000000;
    user-select: none;
    font-weight: 400;
}

.captcha-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 2px;
}

.captcha-logo-img {
    width: 32px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M12.5 1.5C9.3 1.5 6.6 3.6 5.6 6.5l2.4.9c.7-2.1 2.6-3.6 4.9-3.6 2.6 0 4.8 2 5.1 4.5l-3-.1c1 1.7 1.8 3.5 1.9 5.3h3.1c0-4.6-3.8-8.4-8.4-8.4z'/%3E%3Cpath fill='%2334A853' d='M19.1 11.2c-.3 2.5-2 4.6-4.5 5.1l-.9-2.4c1.4-.3 2.5-1.4 2.8-2.7h2.6z'/%3E%3Cpath fill='%23EA4335' d='M13.7 13.9l.9 2.4c-2.1.7-3.6 2.6-3.6 4.9 0 2.6 2 4.8 4.5 5.1v-3.1c-1.7.1-3.5-.9-5.3-1.9v3.1c4.6 0 8.4-3.8 8.4-8.4l-.1-3c-1.7 1-3.5 1.8-5.3 1.9z'/%3E%3Cpath fill='%23FBBC05' d='M10.8 19.1v-2.6c-1.3-.3-2.4-1.4-2.7-2.8H5.5c.3 2.5 2 4.6 4.5 5.1l.8.3z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.captcha-logo-text {
    font-size: 8px;
    color: #555;
    font-family: Roboto, Arial, sans-serif;
    margin-top: 4px;
    font-weight: 500;
}

.captcha-links {
    font-size: 8px;
    color: #777;
    font-family: Roboto, Arial, sans-serif;
    display: flex;
    gap: 4px;
    margin-top: 2px;
}

.captcha-links a {
    color: #777;
    text-decoration: none;
}

.captcha-links a:hover {
    text-decoration: underline;
}

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

/* Orange Search button */
.btn-tracker-search {
    width: 100%;
    background: #f26522;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px;
    border-radius: 0px;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.2);
    letter-spacing: 0.05em;
}

.btn-tracker-search:hover {
    background: #d84f0e;
    box-shadow: 0 6px 16px rgba(242, 101, 34, 0.3);
}

.btn-tracker-search:active {
    transform: scale(0.99);
}

/* Card Flip Effect */
.flip-container {
    perspective: 1000px;
    max-width: 540px;
    width: 100%;
}

.flipper {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
}

.front, .back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.front {
    z-index: 2;
    transform: rotateY(0deg);
}

.back {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.flip-container.flipped .flipper .front {
    transform: rotateY(-180deg);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.flip-container.flipped .flipper .back {
    transform: rotateY(0deg);
    z-index: 2;
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

/* Anniversary Logo Badge Styles */
.anniversary-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 40px;
    user-select: none;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-line {
    position: absolute;
    left: 15px;
    bottom: 16px;
    height: 2px;
    width: 32px;
    background: linear-gradient(to right, rgba(255, 30, 57, 0) 0%, rgba(255, 30, 57, 1) 100%);
    z-index: 1;
}

.badge-text-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    font-size: 7px;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-right: 6px;
    margin-top: -6px;
    z-index: 2;
}

.badge-text-left span {
    font-family: var(--font-heading);
}

.badge-number {
    font-size: 34px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    background: linear-gradient(180deg, #ff1e39 30%, #a80015 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    margin-top: -4px;
    z-index: 2;
    font-family: var(--font-heading);
}

.badge-text-bottom {
    position: absolute;
    bottom: -2px;
    right: 0;
    font-size: 8px;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    letter-spacing: 0.05em;
    line-weight: 1;
    z-index: 2;
    font-family: var(--font-heading);
}

@media (max-width: 576px) {
    .anniversary-badge {
        margin-left: 8px;
        padding-left: 8px;
        height: 30px;
    }
    .badge-line {
        left: 8px;
        bottom: 12px;
        width: 24px;
        height: 1.5px;
    }
    .badge-text-left {
        font-size: 5.5px;
        margin-right: 4px;
        margin-top: -4px;
    }
    .badge-number {
        font-size: 24px;
        margin-top: -3px;
    }
    .badge-text-bottom {
        font-size: 6px;
        bottom: -3px;
    }
}

/* Priority Call Animations & Pulsing Helpline */
.helpline-pulse-btn {
    animation: pulseShadow 2s infinite;
}

@keyframes pulseShadow {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 101, 34, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(242, 101, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 101, 34, 0);
    }
}

@keyframes phoneShake {
    0% { transform: rotate(-12deg); }
    100% { transform: rotate(12deg); }
}

@keyframes hourglassRotate {
    0% { transform: rotate(0deg); }
    85% { transform: rotate(0deg); }
    100% { transform: rotate(180deg); }
}

/* Responsive Header and Logo Optimization */
.logo-text {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 768px) {
    .logo {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 15px;
        gap: 6px;
    }
    .anniversary-badge {
        display: none !important;
    }
}
