/* ============================================
   AGILEVIZION - Common Styles
   Base styles, navbar, footer, components
   ============================================ */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* === NAVBAR === */
.navbar {
    background: #1a202c;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar-brand {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}

.navbar-brand span {
    color: var(--primary-color);
}

.navbar-menu {
    display: flex;
    gap: 10px;
    align-items: center;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    font-weight: 500;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    background: var(--navbar-active-bg, #2c3e50);
}

.lang-switch {
    display: flex;
    gap: 5px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.3);
}

.lang-switch a {
    padding: 5px 10px !important;
    font-size: 0.85em;
    opacity: 0.7;
}

.lang-switch a.active-lang {
    opacity: 1;
    background: rgba(255,255,255,0.1);
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* === SECTION TITLE === */
.section-title {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #2d3748;
}

/* === HERO === */
.hero {
    background: var(--hero-gradient);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.4em;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-questions {
    max-width: 900px;
    margin: 0 auto 25px;
}

.hero-sub {
    font-size: 1.3em;
    opacity: 0.9;
    margin-bottom: 5px;
}

/* === HERO BUTTONS === */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* === CTA BUTTONS === */
.cta-button-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid white;
    transition: transform 0.3s, background 0.3s;
}

.cta-button-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-calendly-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-color);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2em;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-calendly-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-email-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2em;
    border: 2px solid white;
    transition: transform 0.3s, background 0.3s;
}

.cta-email-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

/* === HERO BENEFITS === */
.hero-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.hero-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 5px;
    font-size: 1.15em;
    font-weight: 600;
}

.step-number {
    font-size: 1.3em;
    font-weight: 700;
    color: #fff;
}

.hero-arrow {
    font-size: 1.5em;
    color: rgba(255,255,255,0.8);
}

/* === KEY PHRASE BANNER === */
.key-phrase-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 20px;
    text-align: center;
}

.key-phrase-banner p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.4em;
    color: #fff;
    line-height: 1.6;
}

.key-phrase-banner .highlight {
    color: var(--primary-color);
}

/* === PROBLEMS SECTION === */
.problems-section {
    background: #f7fafc;
    padding: 60px 20px;
    color: #333;
}

.problems-section .section-title {
    color: #2d3748;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.problem-item i {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-top: 3px;
}

.problem-item p {
    font-size: 1.1em;
    color: #4a5568;
}

.problem-item strong {
    display: block;
    font-size: 1.15em;
    margin-bottom: 8px;
    color: #2d3748;
}

/* === SANCTIONS BOX (GRC specific) === */
.sanctions-box {
    background: var(--hero-gradient);
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.sanctions-box h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: white;
}

.sanctions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.sanction-item {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
}

.sanction-item .percent {
    font-size: 2.5em;
    font-weight: bold;
    display: block;
    color: white;
}

.sanction-item .label {
    font-size: 0.95em;
    color: rgba(255,255,255,0.95);
}

/* === PROMISE SECTION === */
.promise-section {
    background: #1a1a2e;
    padding: 60px 20px;
    color: white;
}

.promise-section .section-title {
    color: white;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.promise-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}

.promise-card .number {
    width: 60px;
    height: 60px;
    background: var(--hero-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.promise-card h3 {
    color: var(--primary-color, white);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.promise-card p {
    color: rgba(255,255,255,0.85);
}

/* === DELIVERABLES SECTION === */
.deliverables-section {
    padding: 60px 20px;
    background: white;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.deliverable-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.deliverable-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.deliverable-card .icon {
    width: 50px;
    height: 50px;
    background: var(--hero-gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    flex-shrink: 0;
}

.deliverable-card h4 {
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.deliverable-card p {
    color: #4a5568;
    font-size: 0.95em;
}

/* === FRAMEWORKS SECTION === */
.frameworks {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 80px 20px;
}

.frameworks .section-title {
    color: white;
    margin-bottom: 20px;
}

.frameworks .section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.2em;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.frameworks-category {
    max-width: 1100px;
    margin: 0 auto 40px;
}

.frameworks-category h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.framework-item {
    background: rgba(255,255,255,0.08);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s, background 0.3s;
}

.framework-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
}

.framework-item h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.3em;
    font-weight: 700;
}

.framework-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9em;
}

.framework-item.highlight {
    background: var(--hero-gradient);
    border-top-color: white;
}

.framework-item.highlight p {
    color: rgba(255,255,255,0.9);
}

/* === CTA SECTION === */
.cta-section {
    background: var(--hero-gradient);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === CONTACT INFO === */
.contact-info {
    background: #2d3748;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info a {
    color: white;
}

/* === SOCIAL LINKS === */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: white;
    font-size: 2em;
    transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
    color: #0077b5;
    transform: scale(1.1);
}

/* === FOOTER === */
footer,
.footer {
    background: #1a1a2e !important;
    color: rgba(255,255,255,0.6) !important;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.85em;
}

footer p,
.footer p {
    margin: 0;
    color: rgba(255,255,255,0.6);
}

/* === WHY ME PAGE SPECIFIC === */
.profile-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.profile-photo {
    text-align: center;
}

.profile-photo .avatar {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.profile-photo .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo h2 {
    color: #2d3748;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.profile-photo p {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: 500;
}

.profile-info h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.profile-info p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

/* === CERTIFICATIONS === */
.certifications {
    background: #2d3748;
    color: white;
    padding: 60px 20px;
}

.certifications .section-title {
    color: white;
}

.cert-category {
    margin-bottom: 50px;
}

.cert-category:last-child {
    margin-bottom: 0;
}

.cert-category h3 {
    color: #a0aec0;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.3em;
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.cert-item {
    background: rgba(255,255,255,0.08);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 160px;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.cert-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cert-item .icon {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cert-item h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 0.9em;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
}

.cert-item p {
    color: #a0aec0;
    font-size: 0.75em;
    flex-shrink: 0;
}

/* === ARGUMENTS SECTION (Why Me) === */
.arguments-section {
    background: #f7fafc;
    padding: 60px 20px;
}

.arguments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.argument-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.argument-item .number {
    width: 40px;
    height: 40px;
    background: var(--hero-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.argument-item strong {
    display: block;
    font-size: 1.15em;
    margin-bottom: 8px;
    color: #2d3748;
}

.argument-item p {
    color: #4a5568;
    margin: 0;
}

/* === EXPERTISE SECTION === */
.expertise-section {
    background: #1a1a2e;
    padding: 60px 20px;
}

.expertise-section .section-title {
    color: white;
}

