/* Reset and Base Styles */
html {
  scroll-padding-top: 120px; /* Adjust this if header height changes */
}

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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

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

.container-full {
    width: 100%;
    margin: 0 auto;
}

/* Header/Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    height: 100px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    transition: transform 0.3s ease;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #5a6c7d;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    min-width: 140px;
    display: inline-block;
}

.btn-primary {
    background-color: #2c3e50;
    color: white;
}

.btn-primary:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

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

.business-woman {
    width: 400px;
    height: 500px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.woman-silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 400px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    border-radius: 50% 50% 0 0;
}

.suit-jacket {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: #1a252f;
    border-radius: 20px 20px 0 0;
}

.shirt {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 120px;
    background: white;
    border-radius: 0 0 10px 10px;
}

/* What We Do Section */
.services {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 400;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2c3e50;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 500;
}

.service-card p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Combined Section (Who We Work With + How We Work) */
.combined-section {
    width: 100%;
    display: flex;
}

.combined-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 600px;
}

/* Who We Work With (Left Side - Dark Background) */
.clients-side {
    background-color: #2c3e50;
    color: white;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.clients-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.clients-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.client-industries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
}

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

.industry-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.industry-item span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* How We Work (Right Side - Light Background) */
.process-side {
    background-color: #f8f9fa;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 400;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #2c3e50;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-text {
    font-size: 1.3rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 400;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 400;
    color: white;
}

.contact-header p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.contact-details h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-details a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 5px;
}

.contact-details a:hover {
    color: white;
    text-decoration: underline;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .combined-content {
        grid-template-columns: 1fr;
    }

    .clients-side,
    .process-side {
        padding: 60px 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 140px;
        margin-top: 0;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .business-woman {
        width: 300px;
        height: 400px;
    }

    .clients-side,
    .process-side {
        padding: 50px 30px;
    }

    .clients-content h2,
    .process-content h2 {
        font-size: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .services h2,
    .about h2,
    .contact-header h2 {
        font-size: 1.8rem;
    }

    .clients-side,
    .process-side {
        padding: 40px 20px;
    }
}

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

a.logo-link {
    display: inline-block !important;
    text-decoration: none !important;
}

a.logo-link:hover img.logo {
    transform: scale(1.05) !important;
}


/* Default desktop behavior */
html {
  scroll-padding-top: 120px;
}

/* Larger padding on mobile where header/logo is taller */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 180px;
  }

  .hero {
    padding-top: 180px;
  }
}
