    /* ===================================
   D'Maye Fashion - Footer Pages CSS
   All pages: About, Contact, Track Order, Size Guide,
   Privacy, Terms, Returns, Shipping, Payments,
   Cancellation, FAQs, Careers
   =================================== */

/* ===================================
   GLOBAL STYLES
   =================================== */

:root {
    --navy: #002993;
    --navy-dark: #001a5e;
    --golden: #ffd700;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: white;
}

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

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.text-navy {
    color: var(--navy);
}

.text-golden {
    color: var(--golden);
}

.bg-navy {
    background-color: var(--navy) !important;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary,
.admin-btn.primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background-color: var(--navy);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.admin-btn.primary:hover {
    background-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 41, 147, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: white;
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    /* padding: 3rem 0; */
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* ===================================
   CARDS
   =================================== */

.card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* ===================================
   GRIDS
   =================================== */

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FORMS
   =================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-control,
.checkout-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.checkout-input:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0, 41, 147, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   ALERTS & BANNERS
   =================================== */

.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border-left: 4px solid #16a34a;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #dc2626;
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.alert-warning {
    background-color: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

/* ===================================
   TABLES
   =================================== */

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
}

thead {
    background-color: var(--navy);
    color: white;
}

th,
td {
    padding: 1rem 1.5rem;
    text-align: left;
}

tbody tr {
    border-bottom: 1px solid var(--gray-200);
}

tbody tr:hover {
    background-color: var(--gray-50);
}

/* ===================================
   FAQ ACCORDION
   =================================== */

.faq-item {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: background 0.2s;
}

.faq-item button:hover {
    background-color: var(--gray-50);
}

.faq-item button i {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item button i.rotate-180 {
    transform: rotate(180deg);
}

.faq-item .hidden {
    display: none;
}

/* ===================================
   TABS
   =================================== */

.category-tab {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: var(--navy);
    color: white;
}

.category-tab.active {
    background: var(--navy);
    color: white;
}

/* ===================================
   TIMELINE
   =================================== */

.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.timeline-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: white;
}

.timeline-icon.active {
    background-color: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===================================
   BADGES
   =================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-success {
    background-color: #dcfce7;
    color: #166534;
}

.badge-error {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-warning {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-info {
    background-color: #dbeafe;
    color: #1e40af;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* ===================================
   ICON BOXES
   =================================== */

.icon-box {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-box i {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.icon-box h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.icon-box p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===================================
   FEATURE BOXES
   =================================== */

.feature-box {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

/* ===================================
   SOCIAL LINKS
   =================================== */

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
}

/* ===================================
   TEAM CARDS
   =================================== */

.team-card {
    text-align: center;
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.team-name {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-bio {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===================================
   SIZE GUIDE TABLES
   =================================== */

.size-table {
    width: 100%;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.size-table thead {
    background: var(--navy);
    color: white;
}

.size-table th {
    padding: 1rem 1.5rem;
    font-weight: 600;
    text-align: center;
}

.size-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.size-table tbody tr:hover {
    background: var(--gray-50);
}

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

/* ===================================
   PAYMENT METHOD CARDS
   =================================== */

.payment-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    text-align: center;
}

.payment-card:hover {
    border-color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.payment-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.payment-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.payment-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===================================
   PROCESS STEPS
   =================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.process-step {
    position: relative;
}

.step-number {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===================================
   TRACK ORDER PAGE
   =================================== */

.tracking-timeline {
    position: relative;
    padding-left: 3rem;
}

.tracking-step {
    position: relative;
    padding-bottom: 3rem;
}

.tracking-step::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 3rem;
    width: 2px;
    height: calc(100% - 3rem);
    background: var(--gray-300);
}

.tracking-step.completed::before {
    background: #10b981;
}

.tracking-icon {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.tracking-icon.completed {
    background: #10b981;
}

.tracking-icon.active {
    background: #3b82f6;
    animation: pulse 2s infinite;
}

.tracking-icon.pending {
    background: var(--gray-300);
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease-out;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .no-print,
    header,
    footer,
    nav,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }

    body {
        background: white;
    }

    .card {
        box-shadow: none;
        border: 1px solid var(--gray-300);
    }
}

/* ===================================
   UTILITY ANIMATIONS
   =================================== */

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

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===================================
   END OF STYLES
   =================================== */
