/* Logo Color Theme Variables */
:root {
    /* Primary Logo Colors */
    --logo-blue-primary: #2c5282;
    --logo-blue-dark: #1a365d;
    --logo-blue-light: #4299e1;
    --logo-blue-lighter: #e6f3ff;
    
    /* Logo Gold/Accent Colors */
    --logo-gold-primary: #ffd700;
    --logo-gold-dark: #d69e2e;
    --logo-gold-light: #faf089;
    --logo-gold-lighter: #fffbeb;
    
    /* Neutral Colors */
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --gray-light: #f7fafc;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(44, 82, 130, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    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 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--logo-blue-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--logo-blue-primary);
}

.cta-button {
    background: var(--logo-blue-primary);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 82, 130, 0.2);
}

.cta-button:hover {
    background: var(--logo-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--logo-blue-light) 0%, var(--logo-blue-primary) 50%, var(--logo-blue-dark) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
}

.hero-image-large {
    order: 1;
}

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

.hero-logo-large {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: brightness(1.2) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.4s ease;
}

.hero-logo-large:hover {
    transform: translateY(-10px) scale(1.05);
    filter: brightness(1.3) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.hero-content-below {
    order: 2;
    max-width: 800px;
}

.hero-title-enhanced {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: var(--logo-gold-primary);
    background: linear-gradient(45deg, var(--logo-gold-primary), var(--logo-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-enhanced {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons-enhanced {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--logo-gold-primary);
    color: var(--logo-blue-primary);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: var(--logo-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--logo-blue-primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}



/* CEO Spotlight - Modern Design */
.ceo-spotlight {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--logo-blue-light) 0%, var(--logo-blue-primary) 50%, var(--logo-blue-dark) 100%);
    position: relative;
    overflow: hidden;
}

.ceo-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.ceo-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.ceo-photo-wrapper {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.ceo-photo {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    object-fit: cover;
    aspect-ratio: 3/4;
    min-height: 400px;
}

.ceo-photo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.ceo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 50px 40px 40px 40px;
    border-radius: 0 0 30px 30px;
    opacity: 1;
    transition: all 0.3s ease;
}

.ceo-photo-wrapper:hover .ceo-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 55px 45px 45px 45px;
}

.ceo-quick-info h3 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.ceo-quick-info p {
    color: var(--logo-gold-primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.ceo-title-prominent {
    text-align: center;
    margin-top: 30px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 248, 255, 0.95) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(44, 82, 130, 0.15), 0 5px 15px rgba(102, 126, 234, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.ceo-name-highlight {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--logo-blue-primary) 0%, var(--logo-blue-light) 50%, var(--logo-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(44, 82, 130, 0.1);
    letter-spacing: 0.5px;
}

.ceo-position-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--logo-blue-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(102, 126, 234, 0.2);
}

.ceo-title-accent {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--logo-blue-light) 0%, var(--logo-gold-primary) 50%, var(--logo-blue-light) 100%);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(44, 82, 130, 0.3);
    animation: accentGlow 3s ease-in-out infinite alternate;
}

.ceo-title-prominent:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(44, 82, 130, 0.2), 0 10px 20px rgba(102, 126, 234, 0.15);
}

.ceo-info-compact {
    color: white;
}

.ceo-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--logo-gold-primary), var(--logo-gold-light));
    border-radius: 2px;
    margin-bottom: 30px;
}

.ceo-summary {
    margin-bottom: 40px;
}

.ceo-summary p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.ceo-summary strong {
    color: var(--logo-gold-primary);
    font-weight: 700;
}

.ceo-credentials-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.credential-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.credential-badge i {
    font-size: 1.2rem;
    color: #ffd700;
}

.credential-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--logo-blue-primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--logo-blue-lighter);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 82, 130, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 82, 130, 0.1);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 82, 130, 0.15);
    border-color: var(--logo-blue-light);
}

.card-icon {
    background: var(--logo-blue-lighter);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid var(--logo-blue-light);
}

.card-icon i {
    color: var(--logo-blue-primary);
    font-size: 1.5rem;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--logo-blue-primary);
    margin-bottom: 15px;
}

/* Services */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(44, 82, 130, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(44, 82, 130, 0.15);
    transform: translateY(-3px);
    border-color: var(--logo-gold-primary);
}

.service-icon {
    background: linear-gradient(135deg, var(--logo-blue-primary), var(--logo-blue-light));
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.2);
}

.service-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--logo-blue-primary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* SWOT Analysis */
.swot-analysis {
    padding: 80px 0;
    background: var(--logo-blue-lighter);
}

.swot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.swot-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.1);
    transition: all 0.3s ease;
}

.swot-card.strengths {
    border-left-color: var(--logo-blue-primary);
}

.swot-card.weaknesses {
    border-left-color: var(--logo-gold-dark);
}

.swot-card.opportunities {
    border-left-color: var(--logo-blue-light);
}

.swot-card.threats {
    border-left-color: var(--logo-blue-dark);
}

.swot-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.swot-header i {
    font-size: 1.2rem;
}

.strengths .swot-header i {
    color: var(--logo-blue-primary);
}

.weaknesses .swot-header i {
    color: var(--logo-gold-dark);
}

.opportunities .swot-header i {
    color: var(--logo-blue-light);
}

.threats .swot-header i {
    color: var(--logo-blue-dark);
}

.swot-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--logo-blue-primary);
}

.swot-card ul {
    list-style: none;
}

.swot-card li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.swot-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--logo-blue-primary);
    color: var(--white);
}

.contact .section-header h2 {
    color: var(--white);
}

.contact .section-header p {
    color: var(--logo-blue-lighter);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--logo-gold-primary);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(44, 82, 130, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--logo-blue-primary);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.btn-submit {
    background: var(--logo-blue-primary);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.btn-submit:hover {
    background: var(--logo-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

/* CTA Button Styles */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary i, .btn-secondary i {
    font-size: 1.1rem;
}

/* CEO Section Contact Buttons */
.ceo-contact-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.ceo-btn-whatsapp, .ceo-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
}

.ceo-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.ceo-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.ceo-btn-call {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--logo-gold-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.ceo-btn-call:hover {
    background: var(--logo-gold-primary);
    color: var(--logo-blue-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.ceo-btn-whatsapp i, .ceo-btn-call i {
    font-size: 1.2rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Footer */
.footer {
    background: var(--logo-blue-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    height: 30px;
    filter: brightness(1.5);
}

.footer-text p {
    margin-bottom: 5px;
    color: var(--logo-blue-lighter);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        gap: 30px;
        padding: 0 15px;
    }

    .hero-logo-large {
        max-width: 450px;
    }
    
    .hero-title-enhanced {
        font-size: 2.5rem;
    }

    .hero-subtitle-enhanced {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .swot-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons-enhanced {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .ceo-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .ceo-photo-wrapper {
        max-width: 85%;
        margin: 0 auto;
    }

    .ceo-quick-info h3 {
        font-size: 2rem;
    }

    .ceo-quick-info p {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .ceo-overlay {
        padding: 40px 30px 30px 30px;
    }

    .ceo-header h2 {
        font-size: 2.2rem;
    }

    .ceo-credentials-modern {
        justify-content: center;
    }

    .credential-badge {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }

    .ceo-contact-buttons {
        justify-content: center;
        gap: 15px;
    }

    .ceo-btn-whatsapp, .ceo-btn-call {
        flex: 1;
        min-width: 160px;
        justify-content: center;
        padding: 12px 20px;
    }

    .hero-buttons-enhanced {
        width: 100%;
    }

    .hero-buttons-enhanced .btn-primary,
    .hero-buttons-enhanced .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }

}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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



.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
} 