/* Modern Consultant Profile CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Metal Color Theme */
    --primary-color: #4a5568;
    --secondary-color: #718096;
    --accent-color: #d69e2e;
    --text-light: #2d3748;
    --text-dark: #f7fafc;
    --bg-light: #e2e8f0;
    --bg-dark: #2d3748;
    --bg-metal: #cbd5e0;
    --border-color: #a0aec0;
    --highlight-metal: #fc8181;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--bg-dark);
    color: var(--text-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background-color: #000;
/*
    background: 
        linear-gradient(45deg, 
            rgba(212, 158, 46, 0.1) 0%, 
            rgba(74, 85, 104, 0.2) 50%, 
            rgba(113, 128, 150, 0.1) 100%),
        linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    color: var(--text-dark);
    padding: 4rem 0;
    text-align: center;
    position: relative;
*/
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-left {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--accent-color);
}

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

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero .expertise {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 100%;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #23417e, #2a4a8e);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(214, 158, 46, 0.3);
    border: 2px solid #23417e;
}

.cta-button:hover {
    background: linear-gradient(135deg, #2a4a8e, #23417e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}

/* Sections */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-metal));
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Experience Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
    padding-left: 2rem;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
    padding-right: 2rem;
}

.timeline-content {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.timeline-date {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-metal));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(212, 158, 46, 0.3);
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.urgent-contact {
    background: linear-gradient(135deg, #F2444E, #F45564);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.3);
}

.urgent-contact h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-dark);
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-right {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 20px;
        text-align: left;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-left {
        max-width: 500px;
    }
    
    .hero-image {
        max-width: 90%;
    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-right {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Metal Theme Enhancements */
header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
    border-bottom: 2px solid var(--accent-color);
}

footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 100%);
    border-top: 2px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 85, 104, 0.2);
}

.section-title {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Metallic input styling */
input, textarea, select {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: 5px;
    padding: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 158, 46, 0.2);
}

/* Utility Classes */
.mt-1 { margin-top: 1rem; }
.mt-1-5 { margin-top: 1.5rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.ml-1 { margin-left: 1rem; }
.ml-1-5 { margin-left: 1.5rem; }
.ml-2 { margin-left: 2rem; }
.ml-40 { margin-left: 40px; }
.ml-20 { margin-left: 20px; }
.ml-10 { margin-left: 10px; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.fs-sm { font-size: 16px; }
.fs-lg { font-size: 24px; }
.fs-xl { font-size: 1.5rem; }
.fs-1-1 { font-size: 1.1rem; }
.fs-1-2 { font-size: 1.2rem; }

.fw-bold { font-weight: bold; }
.fst-italic { font-style: italic; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-accent { color: var(--accent-color); }
.text-danger { color: #ff4444; }

.lh-1-4 { line-height: 1.4; }
.lh-1-8 { line-height: 1.8; }

/* Card Styles */
.card-white {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card-white-center {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.card-white-lg {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 3rem;
}

.card-light {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.card-light-center {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.card-purple {
    background: #ebe2eb;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 0 0 1.5rem 0;
}

/* Flex Utilities */
.flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

/* Step Number Circle */
.step-number {
    background: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content {
    padding: 1.5rem;
}

/* Section Headers */
.section-header {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header-lg {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-subheader {
    color: var(--secondary-color);
}

/* Blockquote Styles */
.blockquote {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.blockquote-lg {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: bold;
}

/* List Reset */
.list-reset {
    list-style: none;
    padding: 0;
}

/* Body Text */
.body-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.body-text-mb {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Link Styles */
.link-primary {
    color: var(--primary-color);
    text-decoration: none;
}

.link-primary:hover {
    text-decoration: underline;
}

/* Images */
.img-sm {
    max-width: 150px;
    height: auto;
}

/* Emergency Contact */
.emergency-text {
    margin-top: 1rem;
    color: #ff4444;
    font-weight: bold;
}

/* CTA margin utility */
.cta-mt {
    margin-top: 1.5rem;
}

.p-1-5 {
    padding: 1.5rem;
}

.step-content-p {
    padding: 1.5rem;
}

.note-box {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.prompt-list {
    max-width: 600px;
    margin: 0 auto;
    color: #23417e;
}

.fs-14 {
    font-size: 14px;
}

.frame-accent-color { border: 3px solid var(--accent-color); }
.invisible { display: none; }
