/* ==========================================
   ADEPTIX GLOBAL — Main Stylesheet
   ========================================== */

:root {
    --gold: #C9A22D;
    --gold-dark: #A8831A;
    --gold-light: #D9B84B;
    --dark-green: #4A5D23;
    --olive: #4A5D23;
    --cream: #F8F4EE;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-gray: #5A5A5A;
    --text-light: #7A7A7A;
    --border: #E0D5C5;
}

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

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   TOP UTILITY BAR
   ========================================== */
.top-bar {
    background: var(--gold);
    padding: 8px 0;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-region {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.8);
    border-radius: 4px;
    padding: 2px 12px;
    transition: background 0.2s;
}

.top-bar-region:hover {
    background: rgba(255,255,255,0.15);
}

.top-bar-email {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-left: 6px;
    display: flex;
    align-items: center;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    background: #fff;
    padding: 16px 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border-bottom: 3px solid var(--gold);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-logo-icon svg {
    display: block;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.15;
    color: var(--dark-green);
    font-family: 'Montserrat', sans-serif;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #444;
    font-weight: 400;
}

.logo-group-a {
    font-size: 12px;
    color: #444;
}

.corenza-badge {
    background: #1c2e6b;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.logo-group-label {
    font-size: 12px;
    color: #444;
}

/* keep footer logo-icon/logo-text working */
.logo-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: -1px;
    font-style: italic;
}

.logo-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: inherit;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.2s;
    position: relative;
}

.nav-links li a.active {
    color: var(--text-dark);
    font-weight: 600;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-links .dropdown {
    display: flex;
    align-items: center;
    gap: 2px;
}

.btn-nav-cta {
    background: var(--gold);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: var(--gold-dark);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 80px 0 90px;
    overflow: hidden;
    /* background-image: url('/storage/images/jinesh.jpeg'); */
    /* background-size: cover; */
    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;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: #fff;
    padding: 11px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
}


/* 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;
}

.btn-gold-full {
    width: 100%;
    background: var(--gold);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 10px;
}

.btn-gold-full:hover {
    background: var(--gold-dark);
}

.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;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.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(--gold);
    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(--gold);
    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: 12px;
    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(--gold);
    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);
}

.btn-cta-gold {
    background: var(--gold);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
}

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

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #1c2410;
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-logo .logo-icon {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.2s;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
}

.footer-bottom-right a {
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-bottom-right a:hover {
    color: var(--gold);
}

.footer-bottom-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    padding: 12px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-bottom-note svg {
    width: 12px;
    height: 12px;
    stroke: rgba(255,255,255,0.3);
    fill: none;
    stroke-width: 1.5;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@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;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .models-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .how-timeline {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-left {
        flex-direction: column;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
    .top-bar-email {
        display: none;
    }
    .logo-name {
        font-size: 16px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
}

/* ==========================================
   TEAM LINKEDIN ICON
   ========================================== */
.team-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #0077B5;
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 6px;
    vertical-align: middle;
    transition: background 0.2s;
}

.team-linkedin:hover {
    background: #005f91;
    color: #fff;
}

/* ==========================================
   WHATSAPP FLOAT BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: background 0.2s, transform 0.2s;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.08);
}
