/* File: essayWebsite/public/css/main.css */
:root {
    --primary-green: #0d2818;
    --secondary-cream: #fdfcf9;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4e5a1;
    --text-charcoal: #1a1a1a;
    --text-light: #5a5a5a;
    --text-muted: #888888;
    --white: #ffffff;
    --border-light: #eaeaea;
    --border-gold: rgba(212, 175, 55, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.06);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-luxury: rgba(13, 40, 24, 0.15);
    --gradient-luxury: linear-gradient(135deg, var(--secondary-cream) 0%, var(--white) 50%, #fbf9f4 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-charcoal);
    background-color: var(--secondary-cream);
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.05) 100px,
            rgba(255, 255, 255, 0.05) 200px
        );
}

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-green);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-charcoal);
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-charcoal);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    margin-top: 80px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-luxury);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 40, 24, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.hero-headline {
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    font-weight: 400;
    position: relative;
}

.hero-subheadline {
    font-size: 1.375rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-credentials {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.cta-button {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 58, 46, 0.2);
}

.cta-button:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

section {
    padding: 5rem 0;
    contain: layout style;
}

.introduction {
    background-color: var(--white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-charcoal);
}

/* LinkedIn Integration Styles */
.photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--secondary-cream));
    border: 1px solid var(--border-gold);
    border-radius: 25px;
    text-decoration: none;
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.linkedin-link:hover .linkedin-icon {
    transform: scale(1.1);
}

.linkedin-text {
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Responsive adjustments for LinkedIn */
@media (max-width: 768px) {
    .photo-container {
        margin-bottom: 2rem;
    }
    
    .linkedin-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .linkedin-icon {
        width: 18px;
        height: 18px;
    }
}



.credentials {
    margin-top: 3rem;
}

.credentials.compact {
    background: var(--gradient-luxury);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-gold);
    box-shadow: 0 6px 24px var(--shadow-luxury);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.credentials.three-column .credentials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.credentials-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credentials.three-row .credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
}

.credentials.three-row .credential-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.credentials.three-row .credential-content strong {
    min-width: 140px;
    flex-shrink: 0;
}

.credentials.three-row .credential-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.credentials.three-row .credential-list li {
    padding: 0.125rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.credentials.three-row .credential-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 300;
}

.credentials.compact .credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    contain: layout style;
}

.credentials.compact .credential-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-gold), var(--accent-gold-light));
}

.credentials.compact .credential-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
    background: linear-gradient(135deg, var(--white), #fdfcfa);
}

.credentials.compact .credential-icon {
    color: var(--accent-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.credentials.compact .credential-content {
    flex: 1;
}

.credentials.compact .credential-content strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 0.375rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    font-weight: 600;
}

.credentials.compact .credential-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.credential-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credential-list li {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.credential-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 300;
}

@media (max-width: 968px) {
    .credentials.three-column .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .credentials.compact {
        padding: 1.5rem;
    }
    
    .credentials.compact .credential-item {
        padding: 1.25rem;
    }
    
    .credential-list li {
        font-size: 0.825rem;
    }
    
    .credentials.three-row .credential-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .credentials.three-row .credential-content strong {
        min-width: auto;
    }
}

.approach {
    background-color: var(--secondary-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.pillar {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease;
    contain: layout style;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.pillar-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pillar p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.services {
    background-color: var(--white);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    color: var(--text-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    padding: 3rem;
    background: var(--gradient-luxury);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-light);
    contain: layout style;
}

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

.service-card.signature::before {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--shadow-luxury);
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.service-card.signature .service-badge {
    background: var(--primary-green);
    color: var(--accent-gold);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    line-height: 1.3;
}

.service-card > p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-charcoal);
}

.service-features {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.125rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-note {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.investment-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--secondary-cream);
    border-radius: 8px;
    border: 1px solid var(--border-light);
    line-height: 1.6;
}

.consultation {
    background-color: var(--secondary-cream);
}

.consultation-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left,
.footer-center,
.footer-right {
    font-size: 0.95rem;
}

.footer-center {
    text-align: center;
    flex: 1;
}


/* Tab Interface Styles */
.service-tabs {
    margin-top: 3rem;
}

.tab-headers {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-light);
}

.tab-header {
    background: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-header:hover {
    background: var(--secondary-cream);
}

.tab-header.active {
    color: var(--primary-green);
}

.tab-header.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gold);
}

.tab-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tab-price {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.process-simple {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
}

.process-step-simple {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.quick-booking {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-luxury);
    border-radius: 8px;
    margin-top: 2rem;
}

.booking-note {
    margin-top: 1.5rem; /* Add this for spacing */
    font-size: 0.9rem;
    color: var(--text-muted);
}