/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: #0b0f12;
    color: #e2e8f0;
    line-height: 1.6;
}

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

.highlight {
    color: #22c55e;
}

/* Navbar */
.navbar {
    background-color: #111827;
    border-bottom: 1px solid #1f2937;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-icon {
    margin-right: 8px;
}

.btn-phone {
    background: #1f2937;
    color: #22c55e;
    border: 1px solid #22c55e;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background: #22c55e;
    color: #0b0f12;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(180deg, #111827 0%, #0b0f12 100%);
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.status-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid #22c55e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.tagline {
    font-size: 0.95rem;
    color: #9ca3af;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 15px;
}

.subtext {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 25px;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #22c55e;
    color: #0b0f12;
}

.btn-primary:hover {
    background: #16a34a;
}

.btn-secondary {
    background: #1f2937;
    color: #ffffff;
    border: 1px solid #374151;
}

.btn-secondary:hover {
    background: #374151;
}

/* Profile Card with Image */
.profile-card {
    background: #111827;
    border: 2px solid #22c55e;
    border-radius: 16px;
    padding: 25px;
    min-width: 300px;
    flex: 0 0 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
}

.profile-image-container {
    margin-bottom: 15px;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #22c55e;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.profile-header {
    border-bottom: 1px solid #1f2937;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.profile-header h2 {
    font-size: 1.4rem;
    color: #ffffff;
}

.profile-header .title {
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item .icon {
    font-size: 1.3rem;
}

.contact-item .label {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
}

.contact-item a, .contact-item span {
    color: #f3f4f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: #22c55e;
}

/* Highlights Bar */
.highlights-bar {
    background: #111827;
    border-y: 1px solid #1f2937;
    padding: 25px 0;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1f2937;
    padding: 15px;
    border-radius: 10px;
}

.h-icon {
    font-size: 1.5rem;
}

.highlight-item strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
}

.highlight-item span {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Education Section */
.education-section {
    padding: 60px 0;
    background: #0d131a;
}

.education-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.education-info {
    flex: 1;
    min-width: 280px;
}

.edu-badge {
    background: #22c55e;
    color: #0b0f12;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.education-info h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.edu-school {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.edu-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.btn-cert {
    display: inline-block;
    background: #1f2937;
    color: #22c55e;
    border: 1px solid #22c55e;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-cert:hover {
    background: #22c55e;
    color: #0b0f12;
}

.education-preview {
    flex: 0 0 180px;
    text-align: center;
}

.diploma-img {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    border: 1px solid #374151;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.diploma-img:hover {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    padding: 70px 0;
}

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

.pricing-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 14px;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.highlighted-pricing {
    border: 2px solid #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.pop-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #22c55e;
    color: #0b0f12;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.vat-note {
    color: #9ca3af;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.price-list {
    list-style: none;
    padding: 0;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #1f2937;
    font-size: 0.9rem;
}

.price-list li.divider {
    border-bottom: none;
    padding-top: 15px;
    color: #22c55e;
}

.price-list strong {
    color: #22c55e;
}

.pricing-footer {
    text-align: center;
    margin-top: 30px;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 70px 0;
    background: #0d131a;
}

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

.section-header h2 {
    font-size: 2rem;
    color: #22c55e;
    margin-bottom: 10px;
}

.section-header p {
    color: #9ca3af;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.15);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.en-title {
    font-size: 0.75rem;
    color: #22c55e;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer */
footer {
    background: #06090c;
    border-top: 1px solid #1f2937;
    padding: 30px 0;
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 6px;
}

.copyright {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 15px;
}
