/* ==========================================
   ADEPTIX GLOBAL — Home Page Styles
   ========================================== */

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 80px 0 90px;
    overflow: hidden;
    background-color: var(--dark-green);
    background-position: center top;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(74,93,35,0.88) 0%, rgba(74,93,35,0.72) 55%, rgba(74,93,35,0.50) 100%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Consultation Form Card */
.consult-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.consult-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.4;
}

.form-group {
    margin-bottom: 12px;
    position: relative;
}

.form-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 10px 12px 10px 34px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}

.form-control:focus {
    border-color: var(--gold);
}

.form-control::placeholder {
    color: var(--text-light);
}

.phone-group {
    display: flex;
    gap: 8px;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    min-width: 70px;
    background: #f9f9f9;
    cursor: pointer;
}

.phone-prefix .flag {
    font-size: 16px;
}

.form-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-light);
    outline: none;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.whatsapp-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 14px;
    cursor: pointer;
}

.whatsapp-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #25D366;
}

.whatsapp-icon {
    color: #25D366;
    font-size: 16px;
}

.privacy-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ==========================================
   WHY ADEPTIX GLOBAL
   ========================================== */
.why-section {
    background: var(--cream);
    padding: 70px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 40px;
}

.why-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.why-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-content ul {
    list-style: disc;
    padding-left: 16px;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================
   OPERATING MODELS
   ========================================== */
.models-section {
    background: #fff;
    padding: 70px 0;
}

.models-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.models-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.model-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.model-number {
    font-size: 90px;
    font-weight: 900;
    color: var(--olive);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.85;
    flex-shrink: 0;
}

.model-content {
    padding-top: 8px;
}

.model-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.model-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================
   HOW WE WORK
   ========================================== */
.how-section {
    background: #fff;
    padding: 0 0 70px;
    border-top: 1px solid var(--border);
}

.how-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
    padding-top: 60px;
}

.how-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.how-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gold);
    z-index: 0;
}

.how-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
    z-index: 1;
}

.step-icon-box {
    width: 64px;
    height: 64px;
    border: 2px solid var(--gold);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: #fff;
}

.step-icon-box svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.how-step h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.3;
}

.how-step ul {
    list-style: disc;
    padding-left: 16px;
    text-align: left;
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================
   MEET OUR TEAM
   ========================================== */
.team-section {
    background: var(--cream);
    padding: 70px 0;
}

.team-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.team-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.team-photo-placeholder {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #d4c5b0 0%, #b8a898 100%);
    display: block;
    overflow: hidden;
}

.team-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top center;
    display: block;
}

.team-info {
    padding: 18px 18px 20px;
}

.team-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.team-info .role {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.55;
}

.team-info .expertise-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-info ul {
    list-style: disc;
    padding-left: 16px;
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.75;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
    background: var(--dark-green);
    padding: 50px 0;
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon-box {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon-box svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
}

.cta-text h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

/* ==========================================
   RESPONSIVE — Home page
   ========================================== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .how-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 48px 0 56px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-content h1 {
        font-size: 26px;
    }
    .hero-content p {
        font-size: 14px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .models-grid {
        grid-template-columns: 1fr;
    }
    .model-number {
        font-size: 60px;
    }
    .how-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-left {
        flex-direction: column;
    }
    .section-title,
    .how-title,
    .team-title,
    .models-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 22px;
    }
    .how-timeline {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn-outline-gold {
        width: 100%;
        justify-content: center;
    }
    .model-number {
        font-size: 48px;
    }
    .consult-card {
        padding: 18px 14px;
    }
}

/* ==========================================
   GEO SUGGESTION BANNER
   ========================================== */
.geo-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 9999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    border-left: 5px solid var(--gold);
    padding: 20px 24px 20px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 480px;
    width: calc(100% - 32px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.geo-banner.geo-banner--visible {
    transform: translateX(-50%) translateY(0);
}

.geo-banner-flag {
    font-size: 36px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.geo-banner-body {
    flex: 1;
}

.geo-banner-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.geo-banner-body p {
    font-size: 12.5px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.geo-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.geo-banner-cta {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.geo-banner-cta:hover {
    background: var(--gold-dark);
    color: #fff;
}

.geo-banner-dismiss {
    font-size: 12px;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    text-decoration: underline;
}

.geo-banner-dismiss:hover {
    color: var(--text-dark);
}

.geo-banner-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    color: #bbb;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.geo-banner-close:hover {
    color: var(--text-dark);
}
