/* ELKA Consulting - Main Stylesheet */

:root {
    --primary: #1a3a52;
    --accent: #d4a574;
    --text: #2c2c2c;
    --light: #f8f6f3;
    --white: #ffffff;
    --shadow: rgba(26, 58, 82, 0.08);
}

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

body {
    font-family: 'Libre Franklin', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    scroll-padding-top: 120px; /* Prevents navbar from covering anchored content */
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(231, 231, 231, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(26, 58, 82, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 20px var(--shadow);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--primary);
}

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

.nav-links a.active {
    color: var(--primary);
    font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* Page Header */
.page-header {
    padding: 12rem 3rem 6rem;
    background: linear-gradient(135deg, var(--primary) 0%, #2c5f7f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #2c5f7f 100%);
    position: relative;
    overflow: hidden;
    padding-top: 140px; /* Increased from 80px to account for larger mobile logo */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero h1 strong {
    font-weight: 700;
    color: var(--accent);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.8;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Section Base */
section {
    padding: 6rem 3rem;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

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

.service-card {
    background: var(--white);
    padding: 3rem;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    border-radius: 15px; /* rounded corners */

}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

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

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: var(--text);
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-card ul ul li {
    padding: 0.2rem 0;
    color: var(--text);
    position: relative;
    padding-left: 1.5rem;
}

/* Phase Labels */
.phase-labels {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.phase-label {
    padding: 1rem 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent);
    background: var(--light);
    color: var(--primary);
}

/* Responsive adjustment - stack on tablets and mobile */
@media (max-width: 1024px) {
    .phase-labels {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .phase-label {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Footer */
footer {
    background: #0f1f2e;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    text-align: center;
}

footer p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator::after {
    content: '↓';
    font-size: 1.5rem;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .nav-container {
        padding: 1rem 2rem;
    }
    
    section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(26, 58, 82, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 0;
    }
    
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .hero p {
        font-size: 1.0rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        text-align: center;
    }
}/* ELKA Consulting - Home Page Styles */

/* Approach Section */
.approach-section {
    background: var(--light);
    padding-top: 150px;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.approach-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 15px; /* rounded corners */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
 
}

.approach-item:hover {
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-5px);
}

.approach-icon {
    font-size: 2rem;
    color: var(--accent);
    min-width: 50px;
}

.approach-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Why Choose Section */
.why-choose {
    background: var(--primary);
    color: var(--white);
}

.why-choose .section-title {
    color: var(--white);
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

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

.why-icon {
    font-size: 2rem;
    color: var(--accent);
    min-width: 50px;
}

.why-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* How We Engage Section */
.engagement-steps {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: start;
    padding: 1.25rem;
    background: var(--light);
    transition: all 0.3s ease;
    border-radius: 15px; /* rounded corners */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
     /* Thick line on the left side */
    border-left: 6px solid #0f1f2e; /* thickness and color */

}

.step-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px var(--shadow);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #2c5f7f 100%);
    color: var(--white);
    text-align: center;
}

.contact-cta .section-title {
    color: var(--white);
}

.contact-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.contact-cta ul {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    list-style-position: inside;
    text-align: left;
    padding: 0;
}

.contact-cta li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .approach-features,
    .why-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        min-width: auto;
    }
}

/* THIS IS ALL NEW FOR CONTACTS Contact Page Styles */

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

.contact-form {
    background: var(--light);
    padding: 3rem;
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(26, 58, 82, 0.2);
    background: var(--white);
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: transparent;
    color: var(--accent);
}

#form-messages {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

#form-messages.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-messages.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form submission extra detail */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
