/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #0f1419;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fb 100%);
    font-weight: 400;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(79, 109, 245, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo a {
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #525252;
    font-weight: 400;
    transition: color 0.2s ease;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
    z-index: 1000;
    margin-top: 12px;
    border: 1px solid #e5e5e5;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
}

.dropdown-content a {
    color: #525252;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: 400;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    color: #1e3a8a;
}

.nav-dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

.nav-dropdown:hover .nav-link {
    color: #1e3a8a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #222222;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: calc(110vh - 70px);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #e8f0ff 100%);
    color: #0f1419;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 100px;
    border-bottom: 1px solid rgba(79, 109, 245, 0.1);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.15;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.scroll-arrow {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #3b82f6;
    cursor: pointer;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.scroll-arrow:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(59, 130, 246, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }
    40% {
        transform: translateX(-50%) translateY(-10px) scale(1);
    }
    60% {
        transform: translateX(-50%) translateY(-5px) scale(1);
    }
}

/* Services Section */
.services-section {
    padding: 80px 0 80px;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbff 100%);
    border-bottom: 1px solid rgba(79, 109, 245, 0.1);
}

.services-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin-left: 0;
    margin-right: auto;
}

.service-box-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    cursor: pointer;
}

.service-box .service-icon {
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
    display: block;
    line-height: 1;
    width: auto;
    height: auto;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-radius: 0;
}

.service-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 0;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    color: #484848;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #1e3a8a;
    border: 2px solid #3b82f6;
    box-sizing: border-box;
    outline: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.hero-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
    transition: all 0.3s ease;
}

.hero-photo:hover {
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Fallback placeholder if image doesn't load */
.hero-placeholder {
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* About Section */
.about {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #fafbff 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(79, 109, 245, 0.1);
    overflow: visible;
}

.section-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #1e3a8a;
    letter-spacing: -0.03em;
}

.services-boxes-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #334155;
}

.about-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: start;
    overflow: visible;
    margin-bottom: 2rem;
}

.about-content .hero-image {
    margin-left: -60px;
}

.about-text {
    overflow: visible;
    padding-bottom: 1rem;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #475569;
    line-height: 1.7;
    font-weight: 400;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

.about-text a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.2s ease;
    padding-bottom: 1px;
}

.about-text a:hover {
    color: #1e3a8a;
    border-bottom-color: #1e3a8a;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.about-buttons .btn {
    flex-shrink: 0;
    min-width: 150px;
    padding: 15px 36px;
    margin-bottom: 10px;
    display: inline-flex;
}

.about-buttons .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    overflow: hidden;
}

.about-buttons .btn-primary::before {
    display: none;
}

.about-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.about-buttons .btn-secondary {
    overflow: hidden;
    box-shadow: none;
}

.about-buttons .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.skills h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222222;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background-color: #f7f7f7;
    color: #222222;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #dddddd;
}

/* Footer */
.footer {
    background-color: #fafafa;
    color: #525252;
    padding: 40px 0;
    border-top: 1px solid #e5e5e5;
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #525252;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    color: #1a1a1a;
}

/* Page Hero Section */
.page-hero {
    padding: 90px 0 30px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    min-height: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero .container {
    max-width: 1200px;
}

.page-hero h1 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    text-align: left;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.about-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #dddddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.about-card h2 {
    color: #222222;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card p {
    color: #484848;
    line-height: 1.6;
}

/* Portfolio Page Styles */
.portfolio-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.portfolio-item {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    height: 200px;
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: #717171;
    font-weight: 500;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: #222222;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.portfolio-content p {
    color: #484848;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: #f7f7f7;
    color: #222222;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #dddddd;
}

.portfolio-link {
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #0052A3;
}

/* Consulting & Coaching Page Styles */
.consulting-hero,
.startup-hero {
    min-height: calc(100vh - 70px);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #e8f0ff 100%);
    display: flex;
    align-items: center;
    padding: 100px 0 150px;
    position: relative;
    border-bottom: 1px solid rgba(79, 109, 245, 0.1);
}

.services-boxes-section {
    padding: 60px 0 60px;
    background: linear-gradient(to bottom, #fafbff 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(79, 109, 245, 0.1);
}

.consulting-page,
.coaching-page {
    padding: 60px 0 80px;
    background-color: #ffffff;
}

.consulting-intro-text {
    text-align: left;
    font-size: 3rem;
    color: #0f1419;
    margin-bottom: 0;
    max-width: 1200px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consulting-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 0;
    margin-bottom: 0;
}

.service-footer-text {
    text-align: left;
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 2rem;
    font-style: italic;
    line-height: 1.6;
    opacity: 0.8;
}

.consulting-service-card {
    background-color: transparent;
    padding: 0;
    border: none;
    transition: none;
}

.consulting-service-card:hover {
    transform: none;
    box-shadow: none;
}

.consulting-icon {
    font-size: 1.5rem;
    margin: 0 0 0.8rem 0;
    display: block;
    line-height: 1;
    text-align: left;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
}

.consulting-service-card h2 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: left;
    letter-spacing: -0.02em;
}

.consulting-service-card .service-list {
    text-align: left;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: left;
    max-width: 100%;
}

.service-tag {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    color: #334155;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 450;
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.service-tag:hover {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

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

.service-list li {
    color: #484848;
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
    font-size: 0.85rem;
}

.service-list li:before {
    content: "•";
    color: #0066CC;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CXO Page Styles */
.cxo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.cxo-service-card {
    background-color: #ffffff;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid #dddddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cxo-icon {
    font-size: 3rem;
    margin: 0 auto 1rem auto;
    display: block;
    line-height: 1;
    width: 100%;
    height: auto;
    background: none;
    border-radius: 0;
    color: inherit;
    text-align: center;
}

.cxo-service-card h2 {
    color: #222222;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.cxo-service-card .service-list {
    text-align: left;
}

.cxo-subtitle {
    color: #0066CC;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-style: italic;
    text-align: left;
}

.cxo-description {
    color: #484848;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    text-align: left;
}

/* Startup Page Styles */
.startup-intro-text {
    text-align: left;
    font-size: 2.8rem;
    color: #0f1419;
    margin-bottom: 0;
    max-width: 100%;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.startup-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 1200px;
}

.startup-service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    padding: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.startup-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    opacity: 1;
}

.startup-service-card:hover {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
}

.startup-icon {
    display: none;
}

.startup-service-card h2 {
    display: none;
}

.startup-service-card h3 {
    color: #222222;
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-align: left;
}

.startup-subtitle {
    color: #0066CC;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-style: italic;
    text-align: left;
}

.startup-description {
    color: #484848;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    text-align: left;
}

.startup-service-card .service-list {
    text-align: left;
}

.startup-service-card .service-tags {
    justify-content: left;
    gap: 0.6rem;
}

.consulting-intro,
.coaching-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.consulting-intro h2,
.coaching-intro h2 {
    font-size: 2rem;
    color: #222222;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.consulting-intro p,
.coaching-intro p {
    font-size: 1.1rem;
    color: #484848;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #dddddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #222222;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.service-card p {
    color: #484848;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card p:last-child {
    margin-bottom: 0;
}

.consulting-cta,
.coaching-cta {
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #dddddd;
}

.consulting-cta h2,
.coaching-cta h2 {
    color: #222222;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.consulting-cta p,
.coaching-cta p {
    color: #484848;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    color: #222222;
    margin-bottom: 1rem;
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.contact-info p {
    color: #484848;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    color: #222222;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method p {
    color: #484848;
    margin-bottom: 0;
}

.social-contact h3 {
    color: #222222;
    margin-bottom: 1rem;
}

/* Form Styles */
.contact-form {
    background-color: transparent;
    padding: 0;
    border: none;
    overflow: visible;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.form-group select option {
    background-color: #1e293b;
    color: #ffffff;
}

.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.form-group input[type="file"]::file-selector-button {
    background: rgba(59, 130, 246, 0.2);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: rgba(59, 130, 246, 0.3);
}

.form-group input[type="file"]:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.optional {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-page-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    padding: 120px 0;
}

.contact-page-section .container {
    width: 100%;
}

.contact-section .section-title {
    color: #ffffff;
    text-align: left;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    max-width: 600px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-form .btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 16px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    overflow: hidden;
}

.contact-form .btn-primary::before {
    display: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 2px;
    text-align: center;
    max-width: 500px;
    margin: 0 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
}

.modal-content h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.modal-content p {
    color: #525252;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-content .btn {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.12);
        padding: 2rem 0;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-content .hero-image {
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .about-content .hero-image .hero-photo {
        margin: 0;
    }

    .about-content .about-text {
        width: 100%;
    }

    .about-content .about-text .about-buttons {
        justify-content: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .consulting-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-photo,
    .hero-placeholder {
        width: 250px;
        height: 250px;
    }

    .consulting-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .consulting-intro-text,
    .startup-intro-text {
        font-size: 2rem;
    }
}





