/* Base Styles */
:root {
    --primary-color: #FFC107;
    --secondary-color: #FF9800;
    --accent-color: #4CAF50;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #FFFFFF;
    --background-alt: #F5F5F5;
    --border-color: #E0E0E0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-start: #FFC107;
    --gradient-end: #FF9800;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #F44336;
    --info-color: #2196F3;
    --card-background: #FFFFFF;
    --header-height: 120px; /* Increased from 80px to accommodate larger logo */
    --footer-background: #333333;
    --footer-text: #FFFFFF;
}

[data-theme="dark"] {
    --primary-color: #FFC107;
    --secondary-color: #FF9800;
    --accent-color: #4CAF50;
    --text-color: #F5F5F5;
    --text-light: #CCCCCC;
    --background-color: #121212;
    --background-alt: #1E1E1E;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --card-background: #1E1E1E;
    --footer-background: #1E1E1E;
    --footer-text: #F5F5F5;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-md-4 {
    width: 100%;
}

.col-md-6 {
    width: 100%;
}

.col-lg-3 {
    width: 100%;
}

.col-lg-4 {
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 {
        width: 33.33%;
    }
    
    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 25%;
    }
    
    .col-lg-4 {
        width: 33.33%;
    }
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

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

/* Header Styles */
.header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px; /* Doubled from 50px */
    transition: transform 0.3s ease, height 0.3s ease;
}

.logo img.enlarged-logo {
    height: 100px; /* Maintain consistent size */
}

.logo-text {
    display: none;
    margin-left: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-color);
}

.nav {
    display: flex;
    align-items: center;
    margin-left: auto; /* Push nav to the right */
}

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

.nav-item {
    margin: 0 15px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
    margin-right: 15px;
}

.language-selector {
    position: relative;
    margin-right: 15px;
}

.language-selector-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
}

.language-selector-toggle img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 50%;
}

.language-selector-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--card-background);
    border-radius: 5px;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 10px;
    min-width: 150px;
    display: none;
    z-index: 1000;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 3px;
}

.language-option:hover {
    background-color: var(--background-alt);
}

.language-option img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
    color: #FFFFFF;
}

/* Bee Animation */
.bee-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bee {
    position: absolute;
    animation: float linear infinite;
}

.bee img {
    width: 100%;
    height: auto;
}

.bee-small img {
    width: 30px;
}

.bee-medium img {
    width: 40px;
}

.bee-large img {
    width: 50px;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, 30px) rotate(5deg);
    }
    50% {
        transform: translate(60px, 0) rotate(0deg);
    }
    75% {
        transform: translate(30px, -30px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    border-radius: 3px;
}

/* Card Styles */
.card {
    background-color: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Role Cards */
.role-card {
    background-color: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.role-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.role-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.pricing-card.featured {
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    z-index: -1;
    border-radius: 12px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: var(--background-alt);
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 0;
}

.pricing-features {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.pricing-feature {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 25px;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.pricing-cta {
    display: block;
    margin: 0 30px 30px;
    padding: 12px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
    color: #FFFFFF;
}

/* Gradient Border */
.gradient-border {
    position: relative;
    padding: 3px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
}

.gradient-border-content {
    background-color: var(--card-background);
    border-radius: 8px;
    padding: 20px;
}

/* Footer Styles */
.footer {
    background-color: var(--footer-background);
    color: var(--footer-text);
    padding: 60px 0 30px;
}

.footer-logo img {
    height: 140px; /* Doubled from 70px */
    margin-bottom: 20px;
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--footer-text);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-link {
    margin-bottom: 10px;
}

.footer-link a {
    color: var(--footer-text);
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-link a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
    text-align: center;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: var(--primary-color);
    color: #FFFFFF;
    padding: 8px 15px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Contact Form */
.contact-form {
    background-color: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    padding: 30px;
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: #FFFFFF;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .nav-list {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .nav-list.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        box-shadow: 0 5px 15px var(--shadow-color);
        padding: 20px 0;
    }
    
    .nav-item {
        margin: 10px 0;
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .bee {
        display: none;
    }
}
