/* JD Legal Transcripts - LEGAL THEME */
/* Professional design with navy/gold palette and serif headings */

/* --- NEW FONT IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Inter:wght@300;400;500;600;700&display.swap');

/* --- UPDATED :ROOT VARIABLES (LEGAL THEME) --- */
:root {
    /* Legal Theme Colors */
    --primary: #0d1b2a;       /* Navy Blue */
    --primary-dark: #0a1420;  /* Darker Navy */
    --secondary: #64748b;     /* Muted slate gray */
    --accent: #c0a062;        /* Gold/Beige */

    /* Light Mode Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --black: #000000;

    /* Theme Variables */
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --bg-tertiary: var(--gray-100);
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-700);
    --text-tertiary: var(--gray-600);
    --border-color: var(--gray-200);
    --shadow-color: rgba(0, 0, 0, 0.1);

    /* Status Colors */
    --success: #059669;
    --success-light: #10B981;
    --warning: #D97706;
    --warning-light: #F59E0B;
    --error: #DC2626;
    --error-light: #EF4444;
    --info: #0284C7;
    --info-light: #0EA5E9;

    /* Typography */
    --font-heading: 'Merriweather', serif; /* UPDATED */
    --font-body: 'Inter', sans-serif; /* UPDATED */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Border Radius */
    --radius: 0.375rem; /* UPDATED: Sharper corners */
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body); /* UPDATED */
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading); /* UPDATED */
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary); /* UPDATED */
    margin-bottom: var(--spacing-md);
}

h1, .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    /* Removing gradient text for simpler theme */
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

h2, .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

h3 {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--gray-900);
}
/* ... other h4-h6 styles ... */

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-600);
    line-height: 1.7;
}

a {
    color: var(--primary); /* UPDATED */
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent); /* UPDATED */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}
/* ... */


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary); /* UPDATED: Navy */
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--primary-dark);
    z-index: 1000;
    transition: var(--transition);
    padding: var(--spacing-md) 0;
}

.navbar.scrolled {
    background: var(--primary);
    box-shadow: var(--shadow-lg);
    border-bottom: 2px solid var(--accent); /* UPDATED: Gold */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: var(--spacing-sm);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white); /* UPDATED */
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.nav-logo:hover {
    color: var(--accent); /* UPDATED */
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent); /* UPDATED */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-sm);
    align-items: center;
    /* flex: 1; <-- REMOVED */
    /* justify-content: center; <-- REMOVED */
    margin: 0 var(--spacing-md);
    min-width: 0;
}

.nav-link {
    color: var(--gray-300); /* UPDATED */
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-xs);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent); /* UPDATED */
    background: rgba(192, 160, 98, 0.1); /* UPDATED: Gold glow */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent); /* UPDATED */
    border-radius: var(--radius-full);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white); /* UPDATED */
    border-radius: 2px;
    transition: var(--transition);
}
/* ... */

/* Buttons - Legal Theme */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;/*Better centering*/
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-full); /* UPDATED: Sharper */
    font-family: var(--font-body); /* UPDATED */
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    /* ... (shimmer effect) ... */
}

.btn-primary {
    background: var(--primary); /* UPDATED: Navy */
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--accent); /* UPDATED: Gold */
    color: var(--primary);
    font-weight: 700;
}

.btn-accent:hover {
    background: #d4b77d; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-warm {
    background: var(--secondary); /* UPDATED: Slate gray */
    color: var(--white);
}

.btn-warm:hover {
    background: var(--gray-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}
/* ... */

/* --- UPDATED HERO & CAROUSEL STYLES --- */
.hero {
    position: relative;
    padding: 8rem 0;
    color: #fff;
    overflow: hidden;
    padding-top: 140px; /* Original padding-top */
}
.section-header {
    text-align: center; /* This is the line that centers the text */
    margin-bottom: var(--spacing-3xl);
}

.carousel-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Below the text overlay */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
}

/* This dark overlay goes on each slide */
.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 40, 0.6); /* UPDATED: Now 60% dark */
    z-index: 2; /* On top of the image, but below content */
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5; /* On top of everything */
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

#carousel-prev {
    left: 1rem;
}

#carousel-next {
    right: 1rem;
}
/* --- END OF HERO CAROUSEL STYLES --- */


.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 3; /* UPDATED: Was 1 */
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    color: var(--white); /* UPDATED */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Removed gradient */
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.95;
    line-height: 1.7;
    color: var(--gray-200); /* UPDATED */
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent); /* UPDATED */
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent); /* UPDATED */
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

/* Hero Visual - No longer used, but kept for safety */
.hero-visual { display: none; }
.hero-graphic { display: none; }
.graphic-circle { display: none; }
.graphic-arrow { display: none; }

/* Sections */
section {
    padding: var(--spacing-3xl) 0;
}
/* ... */

.section-title::after {
    background: var(--accent); /* UPDATED */
}
/* ... */

/* Services Section */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

/* --- NEW SERVICE IMAGE STYLE --- */
.service-card-image {
    width: 100%;
    height: 180px; /* You can adjust this height */
    object-fit: cover; /* This crops the image nicely */
    border-radius: var(--radius); /* Uses your existing radius */
    margin-bottom: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary); /* UPDATED */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent); /* UPDATED */
}

.service-card:hover::before {
    background: var(--accent); /* UPDATED */
}

/* Service icon is no longer used, but we'll leave the style */
.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary); /* UPDATED */
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent); /* UPDATED */
    transform: rotateY(180deg);
}
/* ... */

.price {
    font-weight: 700;
    color: var(--primary); /* UPDATED */
    font-size: 1.25rem;
}
/* ... */

/* Order Section */
.order {
    background: var(--white);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: var(--spacing-3xl) 0;
}
/* ... */
.cta-card::before {
    background: var(--primary); /* UPDATED */
}

.cta-card:hover {
    border-color: var(--accent); /* UPDATED */
}
.cta-card:hover::before {
    background: var(--accent); /* UPDATED */
}

.cta-icon {
    background: var(--primary); /* UPDATED */
}

.cta-card:hover .cta-icon {
    background: var(--accent); /* UPDATED */
}
/* ... */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary); /* UPDATED */
    box-shadow: 0 0 0 3px rgba(13, 27, 42, 0.1); /* UPDATED */
}

.file-upload:hover {
    border-color: var(--primary); /* UPDATED */
    background: rgba(13, 27, 42, 0.05); /* UPDATED */
}
/* ... */

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary); /* UPDATED */
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent); /* UPDATED */
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}
/* ... */
.footer-section a:hover {
    color: var(--accent); /* UPDATED */
}

/* ... Animations ... */

/* Floating Action Button */
.fab-btn {
    background: var(--primary); /* UPDATED */
}

.fab-btn:hover {
    background: var(--primary-dark);
}
/* ... */

/* Page Loader */
.page-loader {
    background: var(--primary); /* UPDATED */
}

.loader-logo {
    color: var(--accent); /* UPDATED */
}

.loader-spinner {
    border: 4px solid rgba(192, 160, 98, 0.3); /* UPDATED */
    border-top: 4px solid var(--accent); /* UPDATED */
}

/* Responsive Design */
/* ... (No changes needed in responsive queries) ... */


/* Utility Classes */
/* ... */

/* --- STYLES MOVED FROM INLINE HTML (AND RE-THEMED) --- */
.why-choose-us {
    background: var(--gray-50); /* UPDATED */
    padding: 4rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius); /* UPDATED */
    text-align: center;
    box-shadow: var(--shadow-md); /* UPDATED */
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg); /* UPDATED */
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--accent); /* UPDATED */
    margin-bottom: 1rem;
}
.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary); /* UPDATED */
}
.feature-card p {
    color: #666;
    font-size: 0.9rem;
}
.testimonials {
    margin: 3rem 0;
}
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius); /* UPDATED */
    box-shadow: var(--shadow-lg); /* UPDATED */
    max-width: 800px;
    margin: 0 auto;
    border-top: 4px solid var(--accent); /* UPDATED */
}
.quote-icon {
    font-size: 2rem;
    color: var(--accent); /* UPDATED */
    opacity: 0.3;
}
.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin: 1rem 0;
}
.testimonial-author {
    margin-top: 1rem;
}
.testimonial-author strong {
    display: block;
    color: var(--primary); /* UPDATED */
}
.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); /* UPDATED */
    color: white;
    padding: 3rem;
    border-radius: var(--radius-lg); /* UPDATED */
    text-align: center;
    margin-top: 3rem;
}
.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--white); /* UPDATED */
}
.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}
.service-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}
/* --- FIX FOR ORDER FORM STYLES --- */

.order {
    background: var(--white);
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
}

.order-form {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: var(--radius); /* Uses new sharp radius */
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--accent); /* Adds gold accent border */
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* This styles all your text boxes */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius); /* Uses new sharp radius */
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
}

/* This adds the gold focus effect */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 160, 98, 0.2);
}

/* This is the drag-and-drop box */
.file-upload-group {
    grid-column: 1 / -1; /* Makes it span the full width */
}

.file-upload {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: var(--white);
}

.file-upload:hover {
    border-color: var(--accent); /* Gold hover */
    background: var(--gray-50);
}

/* THIS IS THE MOST IMPORTANT FIX */
/* This hides the ugly default "Choose Files" button */
.file-upload input[type="file"] {
    display: none;
}

.file-upload-content i {
    font-size: 2.25rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.file-upload-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.file-info {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.file-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    display: none; /* Will be shown by JS when files are selected */
}
/* --- FIX FOR CTA SECTION STYLES --- */

.cta-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: var(--spacing-3xl) 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.cta-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

/* This adds the navy blue top border */
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

/* This makes the border gold on hover */
.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}

.cta-card:hover::before {
    background: var(--accent);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--primary); /* Navy icon background */
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto var(--spacing-lg);
    transition: var(--transition);
}

/* This makes the icon gold on hover */
.cta-card:hover .cta-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.cta-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

/* This styles the button groups */
.btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: stretch; /* Makes buttons full-width */
}

.btn-group-horizontal {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    justify-content: center; /* Centers the two small buttons */
}

/* Fix for btn-outline which was missing */
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
/* --- FIX FOR FOOTER STYLES --- */

.footer {
    background: var(--primary-dark); /* Darkest navy */
    color: var(--gray-300);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
}

/* Gold top border for the footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

/* This is the "JD Legal Transcripts" title */
.footer-section h3 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-heading); /* Use serif font */
}

/* This is for "Quick Links", "Services", "Contact Info" */
.footer-section h4 {
    color: var(--accent); /* Gold headings */
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-heading); /* Use serif font */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
    display: flex; /* Aligns icons with text */
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-section a {
    color: var(--gray-300);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent); /* Gold hover */
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-700);
    color: var(--gray-400);
}

/* Fix for button group in footer */
.footer .btn-group {
    display: flex;
    flex-direction: row; /* Horizontal buttons */
    gap: var(--spacing-sm);
}


/* --- FIX FOR FLOATING SUPPORT BUTTON --- */

.floating-support {
    position: fixed;
    bottom: var(--spacing-xl); /* 2rem */
    right: var(--spacing-xl); /* 2rem */
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary); /* Navy background */
    color: var(--white);
    border: 2px solid var(--accent); /* Gold border */
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
    background: var(--primary-dark);
}

.support-menu {
    position: absolute;
    bottom: 70px; /* Position above the main button */
    right: 0;
    background: var(--white);
    border-radius: var(--radius); /* Sharp radius */
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-sm);
    display: none; /* This hides it by default */
    flex-direction: column;
    gap: var(--spacing-xs);
    min-width: 150px;
    border: 1px solid var(--gray-200);
}

/* This class will be added by JavaScript to show the menu */
.support-menu.show {
    display: flex;
    animation: fadeInUp 0.3s ease-out;
}

.support-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-700);
}

.support-option:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.support-option i {
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
    color: var(--primary);
}
/* --- NEW LAYOUT STYLES FOR ORDER FORM --- */

/* 1. Makes the form a white "card" with rounded corners */
.order-form {
    background: var(--white); /* White card background */
    padding: 2.5rem;
    border-radius: var(--radius-xl); /* Softer corners */
    box-shadow: var(--shadow-lg);
    border-top: none; /* Removes the gold top border we added */
    max-width: 800px;
    margin: 0 auto;
}

/* 2. Defines the new 2-column grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* 3. Makes specific items span the full width */
.form-group-full {
    grid-column: 1 / -1; /* This makes it span both columns */
}

/* 4. Styles for the new button layout */
.submit-group {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-aligns everything */
    gap: 1rem;
}

.secondary-actions-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

/* 5. Cleanup: Removes old button group styles */
.btn-group-vertical,
.btn-group-horizontal {
    /* These classes are no longer used in the form,
       but we clear them just in case. */
    gap: 0;
}
/* --- FIX FOR FOOTER BUTTONS (Layout & Colors) --- */

.footer .btn-small {
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
    border-radius: var(--radius-full); /* This makes them pill-shaped */
}

/* 2. Styles the "Order Now" (btn-primary) in the footer */
.footer .btn-primary {
    background: var(--accent); /* Gold background */
    color: var(--primary); /* Navy text */
    border: 2px solid var(--accent);
}
.footer .btn-primary:hover {
    background: #d4b77d; /* Darker gold */
    border-color: #d4b77d;
}

/* 3. Styles the "Contact" (btn-secondary) in the footer */
.footer .btn-secondary {
    background: transparent;
    color: var(--white); /* White text */
    border: 2px solid var(--gray-300); /* Light gray border */
}
.footer .btn-secondary:hover {
    background: var(--white);
    color: var(--primary); /* Navy text on hover */
}
/* --- PAGE LOADER STYLES --- */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary); /* Uses the Navy Blue theme color */
    z-index: 9999; /* Ensures it's on top of all other content */
    display: flex;
    align-items: center;
    justify-content: center;

    /* This is the crucial part for your JS */
    transition: opacity 0.5s ease-out; /* Matches your 500ms JS removal time */
    opacity: 1;
}

/* This class will be added by your JavaScript */
.page-loader.hide {
    opacity: 0;
    visibility: hidden; /* Hides it after fading */
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 3rem; /* Larger icon */
    color: var(--accent); /* Uses the Gold theme color */
    margin-bottom: 1.5rem;
    /* Adds a subtle "breathing" animation to fit the theme */
    animation: pulse 1.5s infinite ease-in-out;
}

.loader-text {
    font-family: var(--font-heading); /* Uses the Merriweather heading font */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(192, 160, 98, 0.3); /* Transparent Gold */
    border-top: 4px solid var(--accent); /* Solid Gold */
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

/* Animation for the spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animation for the logo pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}
/* --- TRACK ORDER PAGE STYLES --- */

.page-header {
    background: var(--primary); /* Navy background */
    padding: 6rem 0 4rem;
    margin-top: 70px; /* Space for the navbar */
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-family: var(--font-body);
    color: var(--gray-200);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.tracking-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.tracking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.tracking-header {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.tracking-header h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.5rem;
}

.tracking-form {
    padding: 2rem;
}

.tracking-result {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.detail-item {
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--radius);
}

.detail-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

.timeline::before {
    background: var(--border-color);
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--gray-300);
}

.timeline-dot.completed {
    background: var(--success);
    box-shadow: 0 0 0 2px var(--success);
}

.timeline-dot.pending {
    background: var(--warning);
    box-shadow: 0 0 0 2px var(--warning);
}

.timeline-dot.current {
    background: var(--accent); /* Gold for current step */
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-content {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
}

.error-message {
    background: #fee2e2;
    color: var(--error);
    border: 1px solid var(--error);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.spinner {
    border: 4px solid rgba(192, 160, 98, 0.2);
    border-top-color: var(--accent);
}
/* --- CAREERS PAGE STYLES --- */

/* Uses the same styles as the Track Order page header */
/* .page-header { ... } */
/* .page-title { ... } */
/* .page-subtitle { ... } */

.careers-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.careers-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .careers-container {
        grid-template-columns: 2fr 1fr; /* Main content and a sidebar */
    }
}

.job-listings {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.job-listing-item {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.job-listing-item:last-child {
    border-bottom: none;
}

.job-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.job-description li {
    margin-left: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Styles for the "Why Join Us" sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent); /* Gold accent */
    padding-bottom: 0.5rem;
}

.sidebar-widget ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-widget li {
    position: relative;
    padding-left: 1.75rem; /* Space for the icon */
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.sidebar-widget li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent); /* Gold checkmark */
    font-size: 0.875rem;
}

/* Styles for the Application Form */
.application-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.application-form h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
/* --- CAREERS PAGE STYLES --- */

/* 1. Page Header (uses hero class) */
.hero {
    /* Re-using the same style as other page headers */
    background: var(--primary); /* Navy background */
    padding: 6rem 0 4rem;
    margin-top: 70px; /* Space for the navbar */
    text-align: center;
}
.hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-family: var(--font-body);
    color: var(--gray-200);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-top: var(--spacing-2xl);
}
.hero-stats .stat {
    /* Re-using homepage stat styles */
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent); /* Gold */
    margin-bottom: var(--spacing-sm);
}
.hero-stats .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* 2. Why Join Us Section */
.why-join {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}
.benefit-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}
.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent); /* Gold icon */
    margin: 0 auto var(--spacing-lg);
}
.benefit-card h3 {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}
.benefit-card p {
    font-size: 0.95rem;
}

/* 3. Open Positions Section */
.positions {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}
.job-listing-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin-bottom: var(--spacing-xl);
    padding: 2rem;
    transition: var(--transition);
}
.job-listing-item:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}
.job-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin: 0.5rem 0 1rem 0;
}
.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.job-requirements {
    margin: 1rem 0 1.5rem 1.25rem;
    color: var(--text-secondary);
}
.job-requirements li {
    margin-bottom: 0.5rem;
}

/* 4. Application Form Section */
.application-form {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}
.form-container {
    /* Re-use order form styles */
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.form-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}
.form-steps .step.active {
    color: var(--accent); /* Gold for active step */
}
.form-steps .step.inactive {
    color: var(--gray-300);
}
.form-steps .step i {
    font-size: 1.5rem;
}
.form-step {
    display: none; /* Hidden by default */
}
.form-step.active {
    display: block; /* Shown by JS */
    animation: fadeInUp 0.5s ease-out;
}
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

/* 5. New Form Elements (Checkboxes) */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-50);
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}
.checkbox-item input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary);
}
.checkbox-item label {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0; /* Override default label margin */
}

/* 6. File Upload Dragging State */
.file-upload.dragging {
    border-color: var(--accent);
    background: rgba(192, 160, 98, 0.05);
}
/* --- ABOUT US PAGE STYLES --- */

/* 1. Page Header (re-using .hero styles from careers) */
.hero .hero-title,
.hero .hero-subtitle {
    /* These styles are already defined, but this confirms
       they will apply to the .hero section on the about page */
    text-align: center;
}

/* 2. Main "About" Section */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 768px) {
    .about-container {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-content .subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent); /* Gold */
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary); /* Darker text */
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* 3. Statistics Section */
.statistics {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-top: 4px solid var(--accent); /* Gold accent */
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-item .stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent); /* Gold number */
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* 4. Team Section */
.team-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50); /* UPDATED: Matches the Statistics section */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.team-member {
    background: var(--white); /* UPDATED: Now bright white */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); /* UPDATED: Stronger shadow */
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    border: 4px solid var(--accent); /* Gold border */
    box-shadow: var(--shadow-lg);
}

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.team-member .role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent); /* Gold role */
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.team-socials a {
    color: var(--secondary);
    margin: 0 0.5rem;
    font-size: 1.25rem;
    transition: var(--transition);
}

.team-socials a:hover {
    color: var(--primary);
}

/* 5. CTA Banner */
.cta-banner {
    background: var(--primary); /* Navy background */
    color: var(--white);
    padding: var(--spacing-3xl) var(--spacing-lg);
    text-align: center;
    border-radius: var(--radius-xl);
    margin: 0 auto;
    max-width: 1200px;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: var(--gray-200);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
/* --- ABOUT US PAGE STYLES --- */

/* 1. Hero Section */
.about-hero {
    position: relative; /* Required for the overlay */
    padding: 6rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    z-index: 1; /* Allows overlay to sit behind text */

    /* --- NEW BACKGROUND IMAGE --- */
    /* I'm using an image from your homepage carousel */
    background-image: url('team.jpg');
    background-size: cover;
    background-position: center;
    /* This parallax effect looks very professional */
    background-attachment: fixed;
}

/* --- ADD THIS NEW BLOCK --- */
/* This creates the dark navy overlay */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* 85% dark navy overlay */
    background: rgba(13, 27, 42, 0.85);

    /* Sits behind the text, on top of the image */
    z-index: -1;
}

/* 2. About Content Section */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}
.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--primary);
}
.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent); /* Gold */
}
.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* 3. Mission/Vision Section */
.mission-vision {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50); /* Light gray background */
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}
.mv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--accent); /* Gold accent */
    transition: var(--transition);
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.mv-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
}

/* 4. Team Section */
.team {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50); /* UPDATED: Light gray background */
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}
.team-member {
    background: var(--white); /* UPDATED: White cards */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 0; /* UPDATED: Remove padding */
    overflow: hidden; /* Important for the image */
}
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}
.member-image img {
    width: 100%; /* UPDATED: Full width */
    height: 220px; /* UPDATED: Fixed height */
    object-fit: cover; /* UPDATED: Crop image */

    /* UPDATED: Remove all circle styles */
    border-radius: 0;
    border: none;
    margin: 0;
}
.member-info {
    padding: 1.5rem; /* UPDATED: Add padding here instead */
    text-align: center;
}
.member-info h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary);
}
.member-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent); /* Gold role */
    margin: 0.25rem 0 1rem 0;
}
.member-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.member-social a {
    color: var(--secondary);
    margin: 0 0.5rem;
    font-size: 1.25rem;
    transition: var(--transition);
}
.member-social a:hover {
    color: var(--primary);
}
/* Re-using .btn-accent for the CTA button */
/* --- CONTACT US PAGE STYLES --- */

/* 1. Page Header */
.contact-hero {
    background: var(--primary); /* Navy */
    padding: 6rem 0 4rem;
    margin-top: 70px; /* Space for the navbar */
    text-align: center;
}
.contact-hero .hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
/* --- ADD THIS NEW BLOCK --- */

.contact-hero .hero-container {
    display: block; /* This overrides the grid layout */
    max-width: 900px; /* Sets a max width for the text block */
    margin: 0 auto; /* Centers the block */
}

.contact-hero .hero-content {
    animation: none; /* Removes the homepage animation */
}
.contact-hero .hero-subtitle {
    font-family: var(--font-body);
    color: var(--gray-200);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* 2. Contact Details Section */
.contact-details-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

/* 3. Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.contact-info-card {
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
}
.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.contact-info-card h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.contact-info-card p,
.contact-info-card a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}
.contact-info-card a:hover {
    color: var(--accent);
}

/* 4. Contact Form */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.contact-form h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.contact-form .form-grid {
    /* Re-uses form-grid from careers */
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .contact-form .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.form-group.full-width {
    grid-column: 1 / -1;
}
/* Re-uses form-group styles */
.invalid-field {
    border-color: var(--error) !important;
}

/* 5. FAQ Section */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden; /* For max-height transition */
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}
.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
}
.faq-icon i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}
.faq-answer p {
    padding: 1.5rem 0;
    margin: 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    line-height: 1.8;
}
/* --- CONTACT US PAGE STYLES --- */

/* 1. Page Hero */
.contact-hero {
    background: var(--primary); /* Navy */
    padding: 6rem 0 4rem;
    margin-top: 70px; /* Space for the navbar */
    text-align: center;
}
.contact-hero .hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.contact-hero .hero-subtitle {
    font-family: var(--font-body);
    color: var(--gray-200);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
.contact-hero .hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-top: var(--spacing-2xl);
}

/* 2. Contact Section */
.contact {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr 2fr; /* 1/3 info, 2/3 form */
    }
}

/* 3. Contact Info (Left Column) */
.contact-info h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.contact-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.method-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.method-info h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0;
}
.method-info p {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    margin: 0.25rem 0;
}
.method-info span {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}
.social-contact h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.1rem;
    margin: 2rem 0 1rem 0;
}
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}
.social-link:hover {
    color: var(--accent);
}

/* 4. Contact Form (Right Column) */
.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
.contact-form h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}
.checkbox-group {
    margin: 1rem 0;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.checkbox-label input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--primary);
}
.invalid-field {
    border-color: var(--error) !important;
}

/* 5. FAQ Section */
.faq {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}
.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
}
.faq-question i {
    font-size: 1rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* 6. CTA Section */
.cta-section {
    background: var(--primary);
    padding: var(--spacing-3xl) 0;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.cta-content h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.25rem;
}
.cta-content p {
    color: var(--gray-200);
    font-size: 1.1rem;
    margin: 1rem 0 2rem 0;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
/* Re-use existing button styles */
.cta-content .btn-primary {
    background: var(--accent);
    color: var(--primary);
}
.cta-content .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.cta-content .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* --- RESPONSIVE DESIGN (MOBILE FIX) --- */
@media (max-width: 992px) {

    /* --- 1. Fix the Navbar Container --- */
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-logo {
        font-size: 1.15rem;
    }

    .hamburger {
        display: flex; /* Show the hamburger icon */
        z-index: 1001; /* Ensure icon stays on top of menu */
    }

    /* --- 2. The Mobile Menu (Initially Hidden) --- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Hide off-screen to the right */
        width: 80%; /* Cover most of the screen */
        max-width: 400px;
        height: 100vh;
        background: var(--primary); /* Use your primary blue/purple */
        flex-direction: column;
        justify-content: center; /* Center items vertically */
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        transition: right 0.3s ease; /* Smooth slide-in effect */
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    /* When the "active" class is added by JS, slide it in */
    .nav-menu.active {
        display: flex !important;
        right: 0;
    }

    /* --- 3. Style Links inside the Menu --- */
    .nav-link {
        font-size: 1.2rem;
        color: white;
        opacity: 0.9;
    }

    .nav-link:hover {
        opacity: 1;
        color: var(--accent);
    }

    /* --- 4. BUTTON FIX: Move Buttons INTO the Menu --- */
    /* By default, .nav-actions (the buttons) are outside .nav-menu.
       On mobile, we often want to hide the original buttons and show copies inside the menu,
       OR simply force the .nav-actions container to join the column layout.

       Here is the fix for your structure: We hide the desktop button container
       and style the buttons if they are inside the .nav-menu list.
    */

    /* Hide the desktop button group sitting in the navbar */
    .nav-actions {
        display: none;
    }

    /* SHOW the buttons if they are inside the mobile menu list
       (Note: You might need to add <li><button>...</li> to your HTML menu for this to work perfectly,
       OR we force the existing .nav-actions to appear as a row below the menu items).
    */

    /* ALTERNATIVE FIX: If your HTML structure has <ul class="nav-menu">...</ul> AND <div class="nav-actions">...</div> separately: */

    /* Let's style .nav-menu to include the buttons visually if you moved them in HTML,
       or just make .nav-menu active styling cover everything. */
}

/* --- 5. SPECIFIC FIX for "Stacked Buttons" on Mobile --- */
/* This forces the Nav Buttons to appear vertically at the bottom of the open menu */
@media (max-width: 992px) {
    /* If you are using JS to toggle a class on a wrapper that contains BOTH menu and buttons: */
    .nav-wrapper.active {
        /* Assuming you have a wrapper. If not, we target the buttons directly */
    }

    /* Force the desktop buttons to be visible inside the hamburger dropdown */
    nav.navbar.active .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%;
    }

    nav.navbar.active .nav-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px;
    }
}
/* ============================================== */
/* CAREERS PAGE - CONSOLIDATED SECTION STYLES     */
/* ============================================== */

/* Note: .container, .section-title, and .section-subtitle rules were removed
   here because they already exist as general styles in the file. */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    text-align: center; /* ALREADY CENTERING TEXT */
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    text-align: center; /* ALREADY CENTERING TEXT */
    margin-bottom: 40px;
}
.open-positions-section {
    /* Uses CSS variable for padding for consistency (4rem = 64px, close to your 60px) */
    padding: var(--spacing-3xl) 0;
    background-color: var(--gray-50); /* Uses CSS variable for #f8f9fa */
}
/* In styles-modern.css */
.job-listings-grid {
    /* Critical for spacing and layout of the cards */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;

    /* ➡️ NEW: Add these lines for horizontal centering ⬅️ */
    justify-content: center; /* Centers grid items along the row axis */
    max-width: 1000px; /* Optional: Constrain width if you want it tighter */
    margin-left: auto;
    margin-right: auto;
}

/* ==================================== */
/* JOB LISTING CARD STYLES              */
/* ==================================== */

.job-listing {
    /* Main container styling: Card look */
    background-color: var(--white); /* Uses CSS variable */
    border: 1px solid var(--gray-200); /* Uses CSS variable */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-listing:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.job-listing h3 {
    /* Job title styling */
    color: var(--accent); /* Uses CSS variable for Gold/Beige */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.job-listing p {
    /* Job description styling */
    color: var(--gray-600); /* Uses CSS variable for #475569 */
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.job-meta span {
    display: inline-flex;
    align-items: center;
    color: var(--gray-500); /* Uses CSS variable for #64748b */
    font-size: 15px;
    font-weight: 500;
}

.job-meta .fas {
    color: var(--accent); /* Uses CSS variable */
    margin-right: 8px;
    font-size: 16px;
}

.job-listing .btn-primary {
    margin-top: auto;
    padding: 12px 25px;
    text-align: center;
}
/* --- UNIVERSAL MOBILE FIX (Works on Android & iOS) --- */

/* 1. DESKTOP VIEW (Laptops & PC) */
@media (min-width: 993px) {
    .mobile-only {
        display: none !important; /* Hide the mobile list buttons */
    }
    .desktop-only {
        display: block !important; /* Show the header buttons */
    }
}

/* --- NEW MOBILE MENU BUTTON STYLING --- */

@media (max-width: 992px) {
    /* 1. The Container for the row of buttons */
    .mobile-btn-row {
        display: flex;
        justify-content: space-between; /* Spread them out evenly */
        gap: 10px; /* Space between buttons */
        width: 100%;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1); /* Subtle divider line */
    }

    /* 2. Make the buttons fit side-by-side */
    .mobile-mini-btn {
        flex: 1; /* Make them all equal width */
        display: flex;
        flex-direction: column; /* Icon on top of text */
        align-items: center;
        justify-content: center;
        padding: 10px 5px;
        font-size: 0.85rem !important; /* Smaller text */
        border-radius: 8px;
        line-height: 1.2;
    }

    /* 3. Icon styling adjustments */
    .mobile-mini-btn i {
        margin-right: 0 !important; /* Remove side margin */
        margin-bottom: 5px; /* Add bottom margin */
        font-size: 1.2rem;
    }
}
/* --- HERO SECTION MOBILE FIX --- */
@media (max-width: 992px) {

    /* 1. Allow the Hero to grow (Stop cutting off content) */
    .hero {
        height: auto !important; /* Override fixed desktop height */
        min-height: 100vh;       /* Ensure it fills at least one screen */
        padding-top: 130px;      /* Push down so it doesn't hide behind Navbar */
        padding-bottom: 60px;    /* Give breathing room at the bottom */
        text-align: center;      /* Center text looks better on mobile */
    }

    /* 2. Stack the layout vertically (Instead of Side-by-Side) */
    .hero-container {
        display: flex !important;
        flex-direction: column !important; /* Key fix: Vertical Stack */
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 1.5rem; /* Prevent text touching the edges */
    }

    /* 3. Resize massive text for small screens */
    .hero-title {
        font-size: 2.2rem !important; /* Shrink from desktop size */
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    /* 4. Fix the Hero Buttons */
    .hero-actions {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-actions .btn-group {
        flex-direction: column; /* Stack buttons vertically */
        width: 100%;
        gap: 15px;
    }

    .hero-actions .btn {
        width: 100%; /* Make buttons full width for easy tapping */
        justify-content: center;
    }

    /* 5. Handle Hero Stats (if visible) */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat {
        width: 100%;
        padding: 1rem;
        background: rgba(255,255,255,0.9); /* Make readable over backgrounds */
    }
}
/* --- Pricing Section Styles --- */
.pricing-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent; 
}

/* HOVER EFFECT: Card moves up, border turns Gold */
.pricing-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid #D4AF37; /* Gold Border */
}

/* ICON DEFAULT: Navy Blue */
.pricing-icon {
    font-size: 2.5rem;
    color: #003366; /* Navy Blue */
    margin-bottom: 20px;
    transition: color 0.3s ease; /* Smooth color change */
}

/* ICON HOVER: Turns Gold when you hover the card */
.pricing-card:hover .pricing-icon {
    color: #D4AF37; /* Gold */
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.pricing-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer area */
.pricing-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #e9ecef;
    padding-top: 40px;
}

.pricing-disclaimer {
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    display: inline-block;
}

.payment-methods p {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: #888;
}

.payment-icons {
    font-size: 2rem;
    color: #555;
    margin-bottom: 10px;
}

.payment-icons i {
    margin: 0 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}