/* Layout styles for sections */

/* Header */
.header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 28px;
    width: auto;
    margin: 1px 0;
    object-fit: contain;
    transition: height 0.3s ease;
}

/* Hamburger Button - Mobile Only */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background: white;
    border-left: 1px solid var(--border-color);
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateX(100%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 100;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-mobile a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
}

.nav-mobile a:last-of-type {
    border-bottom: none;
}

.nav-mobile a:hover {
    color: var(--accent-color);
}

.nav-mobile .language-dropdown {
    padding-top: 0;
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-top: none;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

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

.nav-desktop a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: var(--light-gray);
    padding: 60px 0 80px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    margin-bottom: 32px;
    width: 100%;
    max-width: 300px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-content h1 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: var(--text-color);
    padding: 0 20px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 0 20px;
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
}

.about h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
    padding: 0 4px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-image {
    display: flex;
    justify-content: center;
    order: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 250px;
    border-radius: 10px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-number {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: var(--light-gray);
}

.services h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 8px;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 1, 104, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-card p {
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Technologies Section */
.technologies {
    padding: 60px 0;
}

.technologies h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    padding: 0 20px;
}

.tech-hero-image {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tech-hero-image img {
    width: 100%;
    height: auto;
    max-width: 280px;
    border-radius: 10px;
}

.tech-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 8px;
}

.tech-category {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.tech-category h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
}

.contact h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    padding: 0 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 2;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-form {
    order: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.contact-form textarea {
    min-height: 100px;
    resize: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gradient-start), var(--hover-color));
    color: white;
    padding: 24px 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    padding: 0 20px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 60px 0;
    background: white;
}

.why-choose h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    padding: 0 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 40px;
    padding: 0 20px;
    opacity: 0.8;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 8px;
}

.why-card {
    background: var(--light-gray);
    padding: 32px 24px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 1, 104, 0.15);
    border-color: var(--accent-color);
    background: white;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.why-card p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* How We Work Section */
.how-we-work {
    padding: 60px 0;
    background: var(--light-gray);
}

.how-we-work h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary-color);
    padding: 0 20px;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 8px;
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 1, 104, 0.1);
    border-color: var(--accent-color);
}

.step-number {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-color);
    opacity: 0.3;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step-content p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 16px;
    padding: 0 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
    padding: 0 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.cta-section .btn.primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn.primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.cta-section .btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.feature-icon {
    font-size: 1.2rem;
    font-weight: bold;
}