/* Akham Digital Identity Solutions - Main Stylesheet */
/* Replicating Seosight WordPress theme layout */

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    background: #fff;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2f2c2c;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

a { text-decoration: none; color: #4cc2c0; transition: all 0.3s; }
a:hover { color: #3aada8; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }

/* ============ TOP BAR ============ */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #888; }
.top-bar a:hover { color: #4cc2c0; }
.follow-us { display: flex; align-items: center; gap: 10px; }
.follow-us span { color: #888; font-size: 13px; }
.follow-us .social-icon { width: 18px; height: 18px; opacity: 0.5; transition: opacity 0.3s; }
.follow-us .social-icon:hover { opacity: 1; }

/* ============ HEADER / NAV ============ */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container { display: flex; align-items: center; justify-content: space-between; padding: 10px 15px; }
.logo img { height: 65px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > ul { display: flex; list-style: none; gap: 0; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    color: #2f2c2c;
    font-weight: 600;
    font-size: 14px;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: #4cc2c0; }
.main-nav > ul > li > a .nav-icon { font-size: 14px; color: #4cc2c0; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    min-width: 230px;
    z-index: 100;
    border-top: 2px solid #4cc2c0;
}
.main-nav > ul > li:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s;
}
.dropdown-menu a:hover { background: #f9f9f9; color: #4cc2c0; padding-left: 25px; }

/* Mobile menu */
.mobile-toggle { display: none; cursor: pointer; padding: 10px; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 2px; background: #2f2c2c; transition: 0.3s; }

/* ============ HERO SLIDER ============ */
.hero-slider { position: relative; overflow: hidden; min-height: 550px; }
.slide { display: none; min-height: 550px; align-items: center; padding: 60px 0; }
.slide.active { display: flex; }
.slide-content { display: flex; align-items: center; gap: 40px; }
.slide-text { flex: 1; }
.slide-text h1 { font-size: 3rem; line-height: 1.15; margin-bottom: 1rem; }
.slide-text p { font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; }
.slide-image { flex: 1; text-align: center; }
.slide-image img { max-height: 450px; }

/* Slide themes */
.slide-teal { background: #4cc2c0; color: #fff; }
.slide-teal h1, .slide-teal p { color: #fff; }
.slide-light { background: #f7f9f9; color: #2f2c2c; }
.slide-light .slide-content { flex-direction: column; text-align: center; }
.slide-light .slide-image img { max-height: 350px; }
.slide-orange { background: #f15b26; color: #fff; }
.slide-orange h1, .slide-orange p { color: #fff; }

.slider-tabs { display: flex; }
.slider-tab {
    flex: 1;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
    color: #fff;
}
.slider-tab.active, .slider-tab:hover { opacity: 0.9; }
.slider-tab h4 { font-size: 14px; color: #fff; margin: 0; font-weight: 700; }
.slider-tab .tab-num { font-size: 2rem; font-weight: 700; opacity: 0.4; }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); cursor: pointer; z-index: 10; opacity: 0.4; transition: opacity 0.3s; }
.slider-nav:hover { opacity: 1; }
.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }
.slider-nav svg { width: 50px; height: 50px; fill: none; stroke: #666; stroke-width: 2; }

/* ============ BTN ============ */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-dark { background: #2f2c2c; color: #fff; }
.btn-dark:hover { background: #4cc2c0; color: #fff; box-shadow: 0 10px 25px rgba(76,194,192,0.3); }
.btn-primary { background: #4cc2c0; color: #fff; border: 2px solid #4cc2c0; }
.btn-primary:hover { background: transparent; color: #4cc2c0; }
.btn-outline { background: transparent; border: 2px solid #4cc2c0; color: #4cc2c0; }
.btn-outline:hover { background: #4cc2c0; color: #fff; }

/* ============ INFO BOXES ============ */
.info-boxes { padding: 80px 0; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-box { text-align: center; padding: 30px 20px; transition: transform 0.3s; }
.info-box:hover { transform: translateY(-5px); }
.info-box-icon { width: 80px; height: 80px; margin: 0 auto 20px; }
.info-box-icon img { width: 100%; }
.info-box h5 { font-size: 16px; margin-bottom: 12px; }
.info-box p { color: #888; font-size: 14px; line-height: 1.7; }

/* ============ FEATURES SECTION ============ */
.features-section { padding: 80px 0; background: #fff; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.features-list { list-style: none; }
.features-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}
.features-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #4cc2c0;
    font-weight: 700;
    font-size: 16px;
}

/* ============ STATS / COUNTERS ============ */
.stats-section { padding: 80px 0; background: #f7f9f9; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item .counter-number { font-size: 60px; font-weight: 700; color: #4cc2c0; line-height: 1; }
.stat-item .counter-unit { font-size: 30px; font-weight: 700; color: #4cc2c0; }
.stat-item h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-top: 15px; }
.counter-line { width: 40px; height: 2px; margin: 15px auto 0; }
.counter-line span { display: inline-block; width: 50%; height: 100%; }
.counter-line .first { background: #4cc2c0; }
.counter-line .second { background: #f15b26; }

/* ============ MOUNTAIN / VALUES SECTION ============ */
.values-section {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #f7f9f9 0%, #e8f4f3 100%);
    position: relative;
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.value-item { padding: 20px; }
.value-item .value-icon { width: 80px; height: 80px; margin: 0 auto 20px; }
.value-item .value-icon img { width: 100%; }
.value-item h5 { font-size: 16px; margin-bottom: 10px; }
.value-item p { color: #888; font-size: 14px; line-height: 1.7; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 80px 0; background: #fff; }
.testimonial-slider { position: relative; max-width: 700px; }
.testimonial-item { display: none; padding: 30px; }
.testimonial-item.active { display: block; }
.testimonial-text { font-size: 16px; line-height: 1.8; font-style: normal; color: #2f2c2c; margin-bottom: 20px; font-weight: 600; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.testimonial-author img { width: 50px; height: 60px; border-radius: 4px; }
.testimonial-author .author-name { font-weight: 700; color: #4cc2c0; text-transform: uppercase; font-size: 13px; letter-spacing: 1px; }
.testimonial-dots { display: flex; gap: 8px; margin-top: 20px; }
.testimonial-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: #ddd; cursor: pointer; transition: background 0.3s;
}
.testimonial-dot.active { background: #2f2c2c; }
.testimonials-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: center; }

/* ============ PRICING ============ */
.pricing-section { padding: 80px 0; background: #f7f9f9; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 960px; margin: 0 auto; }
.pricing-card {
    background: #fff;
    text-align: center;
    padding: 40px 30px;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.pricing-icon { margin-bottom: 20px; }
.pricing-icon img { height: 70px; }
.pricing-title { font-size: 18px; font-weight: 700; color: #2f2c2c; margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 25px; }
.pricing-features li { padding: 8px 0; font-size: 14px; color: #555; border-bottom: 1px solid #f5f5f5; }
.pricing-features li strong { font-weight: 600; }
.pricing-price { font-size: 36px; font-weight: 700; color: #2f2c2c; margin-bottom: 25px; }
.pricing-price .currency { font-size: 20px; vertical-align: top; }

/* ============ PAGE TITLE ============ */
.page-title-section {
    background: #4cc2c0;
    padding: 60px 0;
    text-align: center;
}
.page-title-section h1 { color: #fff; font-size: 2.5rem; margin: 0; }
.breadcrumbs {
    background: #44b5b3;
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.breadcrumbs a { color: rgba(255,255,255,0.9); }

/* ============ CONTENT SECTIONS ============ */
.section { padding: 80px 0; }
.section-bg { background: #f7f9f9; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.section-header { text-align: center; margin-bottom: 50px; }

/* ============ PROGRESS BARS ============ */
.progress-group { margin-bottom: 20px; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; font-weight: 600; }
.progress-bar { height: 4px; background: #eee; border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: #4cc2c0; border-radius: 2px; transition: width 1.5s ease; }

/* ============ CLIENT CARDS ============ */
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.client-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}
.client-card:hover { transform: translateY(-5px); }
.client-card img { width: 100%; height: 200px; object-fit: cover; }
.client-card-body { padding: 20px; }
.client-card h5 { font-size: 16px; margin-bottom: 8px; }
.client-card h5 a { color: #2f2c2c; }
.client-card h5 a:hover { color: #4cc2c0; }
.client-card p { font-size: 14px; color: #888; margin-bottom: 15px; }

/* ============ TESTIMONIAL CARDS (for testimonials page) ============ */
.testimonial-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.tcard {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.tcard .tcard-text { font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 20px; font-weight: 600; }
.tcard .tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard .tcard-author img { width: 45px; height: 55px; border-radius: 4px; }
.tcard .author-name { font-weight: 700; color: #4cc2c0; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.tcard .author-role { font-size: 12px; color: #888; }

/* ============ CONTACT FORM ============ */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 14px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #4cc2c0; }

.captcha-group {
    background: #f7f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.captcha-label { display: block; font-weight: 600; margin-bottom: 0.5rem; font-size: 14px; }
.captcha-challenge { display: flex; align-items: center; gap: 1rem; }
.captcha-question {
    font-size: 18px; font-weight: 700; color: #2f2c2c;
    background: #fff; padding: 8px 16px; border-radius: 4px;
    border: 1px solid #ccc; min-width: 120px; text-align: center;
}
.captcha-challenge input { width: 100px; padding: 8px 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; text-align: center; }
.captcha-challenge input:focus { outline: none; border-color: #4cc2c0; }
.captcha-refresh { background: none; border: 1px solid #ccc; border-radius: 4px; padding: 6px 10px; cursor: pointer; font-size: 16px; color: #666; }
.captcha-refresh:hover { border-color: #4cc2c0; color: #4cc2c0; }

.contact-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.contact-info-card { text-align: center; padding: 25px; background: #f7f9f9; border-radius: 8px; }
.contact-info-card h6 { color: #2f2c2c; margin-top: 10px; }
.contact-info-card p { font-size: 14px; color: #888; }

/* Form messages */
.form-message { padding: 12px 16px; border-radius: 4px; margin-top: 1rem; font-size: 14px; font-weight: 500; display: none; }
.form-message--success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-message--error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ============ FOOTER ============ */
.footer {
    background: #2f2c2c;
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 30px; padding-bottom: 40px; }
.footer h6 { color: #4cc2c0; font-size: 12px; letter-spacing: 2px; margin-bottom: 15px; }
.footer-logo img { height: 50px; margin-bottom: 15px; }
.footer-desc { font-size: 14px; line-height: 1.7; }
.footer ul a { color: rgba(255,255,255,0.6); font-size: 14px; display: block; padding: 4px 0; }
.footer ul a:hover { color: #4cc2c0; }
.footer-contact p { font-size: 14px; line-height: 1.7; margin-bottom: 8px; }
.footer-contact a { color: #4cc2c0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom-links a:hover { color: #4cc2c0; }

/* ============ COOKIE CONSENT ============ */
#cookie-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    font-size: 14px;
    color: #555;
}
#cookie-bar .container { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
#cookie-bar .btn-accept { background: #000; color: #fff; border: none; padding: 8px 20px; cursor: pointer; font-weight: 600; font-size: 13px; }
#cookie-bar a { color: #62a329; }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .main-nav { display: none; }
    .main-nav.active { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.1); z-index: 999; padding: 20px; }
    .main-nav.active > ul { flex-direction: column; }
    .main-nav.active > ul > li > a { padding: 12px 0; }
    .main-nav.active .dropdown-menu { position: static; box-shadow: none; border-top: none; padding-left: 20px; display: block; }
    .mobile-toggle { display: flex; }
    .slide-content { flex-direction: column; text-align: center; }
    .slide-text h1 { font-size: 2rem; }
    .slider-tabs { flex-direction: column; }
    .info-grid, .stats-grid, .values-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
    .two-col, .features-grid, .testimonials-layout { grid-template-columns: 1fr; }
    .clients-grid, .testimonial-cards { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .info-grid, .stats-grid, .values-grid, .pricing-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
    h1 { font-size: 2rem; }
    .slide { min-height: 400px; }
    .slide-text h1 { font-size: 1.8rem; }
    .hero-slider { min-height: 400px; }
}
