/* ============================================
   CONTACT & ABOUT US PAGES STYLES
============================================ */

/* ── Page Header ── */
.page-header-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-header-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
}
.page-header-content { position: relative; z-index: 1; text-align: center; }
.page-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-subtitle { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 20px; }
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.breadcrumb-nav a { color: rgba(255,255,255,.8); text-decoration: none; }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav i { font-size: 10px; }
.breadcrumb-nav span { color: #f97316; font-weight: 600; }

/* ── Quick Info Strip ── */
.contact-strip {
    background: linear-gradient(135deg, #2563eb, #0d9488);
    padding: 16px 0;
}
.contact-strip__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.contact-strip__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity .2s;
}
.contact-strip__item:hover { opacity: .8; color: #fff; }
.contact-strip__item i { font-size: 16px; opacity: .9; }

/* ── Contact Page Section ── */
.contact-page-section {
    padding: 70px 0 90px;
    background: #f8fafc;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

/* ── Form wrapper ── */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.form-header { text-align: center; margin-bottom: 32px; }
.form-header__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(37,99,235,.3);
}
.form-header h2 { font-size: 24px; font-weight: 800; color: #1e293b; margin-bottom: 8px; }
.form-header p  { font-size: 14px; color: #64748b; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 13px;
}
.form-label i { color: #2563eb; font-size: 13px; width: 14px; text-align: center; }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    box-sizing: border-box;
}
.form-control:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
textarea.form-control { resize: vertical; min-height: 120px; padding-top: 12px; }

/* Icon inside input */
.input-icon-wrap {
    position: relative;
    display: block;
}
.input-icon-wrap > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #2563eb;
    font-size: 13px;
    pointer-events: none;
    z-index: 2;
    line-height: 1;
}
.input-icon-wrap--textarea > i {
    top: 14px;
    transform: none;
}
/* ensure all inputs/selects/textareas inside wrapper have left padding */
.input-icon-wrap .form-control {
    padding-left: 40px;
}
/* selects: hide native arrow, add custom chevron on right */
.input-icon-wrap select.form-control {
    appearance: none;
    -webkit-appearance: none;
    padding-left: 40px;
    padding-right: 40px;
    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='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s ease;
    box-shadow: 0 6px 20px rgba(37,99,235,.3);
    font-family: inherit;
}
.submit-btn:hover {
    background: linear-gradient(135deg, #f97316, #fbbf24);
    box-shadow: 0 8px 24px rgba(249,115,22,.35);
    transform: translateY(-2px);
}

/* ── Right column ── */
.contact-right { display: flex; flex-direction: column; gap: 24px; }

/* ── Info cards ── */
.cinfo-cards { display: flex; flex-direction: column; gap: 12px; }

.cinfo-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
    border: 1px solid #e2e8f0;
    transition: all .25s ease;
}
.cinfo-card:hover {
    border-color: #2563eb;
    box-shadow: 0 6px 24px rgba(37,99,235,.12);
    transform: translateY(-2px);
    color: #1e293b;
}
.cinfo-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.cinfo-card strong { display: block; font-size: 13px; font-weight: 700; color: #1e293b; margin-bottom: 3px; }
.cinfo-card span   { font-size: 13px; color: #64748b; line-height: 1.5; }

/* ── Map ── */
.map-wrapper {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    border: 1px solid #e2e8f0;
}
.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

.map-open-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}
.map-open-link:hover {
    background: linear-gradient(135deg, #f97316, #fbbf24);
    color: #fff;
}

/* ============================================
   ABOUT US PAGE STYLES
============================================ */

.about-page-section { padding: 80px 0; background: #fff; }

.story-section { margin-bottom: 80px; }
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.story-text h2 { font-size: 36px; font-weight: 800; color: #1e293b; margin-bottom: 25px; line-height: 1.3; }
.story-text p  { font-size: 16px; color: #64748b; line-height: 1.9; margin-bottom: 20px; }
.story-features { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; color: #1e293b; }
.feature-item i { color: #0d9488; font-size: 18px; }
.story-image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.15); }
.story-image img { width: 100%; height: 500px; object-fit: cover; transition: transform .5s ease; }
.story-image:hover img { transform: scale(1.05); }
.image-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,23,42,.9), transparent);
    padding: 30px; color: #fff;
}
.overlay-content { text-align: center; }
.overlay-content i { font-size: 40px; margin-bottom: 10px; }
.overlay-content h4 { font-size: 24px; font-weight: 700; margin: 0; }

/* Stats */
.stats-section {
    background: linear-gradient(135deg, #2563eb, #0d9488);
    padding: 60px 50px;
    border-radius: 20px;
    margin-bottom: 80px;
    box-shadow: 0 20px 50px rgba(37,99,235,.25);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.stat-item { text-align: center; color: #fff; }
.stat-item i { font-size: 40px; margin-bottom: 15px; opacity: .9; }
.stat-number { font-size: 48px; font-weight: 800; display: block; margin-bottom: 10px; color: #fff !important; -webkit-text-fill-color: #fff !important; background: none !important; }
.stat-label  { font-size: 16px; font-weight: 500; opacity: .95; }

/* Values */
.values-section { margin-bottom: 80px; }
.section-header-center { text-align: center; margin-bottom: 50px; }
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 12px;
}
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.value-card {
    background: #fff; padding: 40px 30px; border-radius: 20px; text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,.07); transition: all .35s ease; border: 1px solid #e2e8f0;
}
.value-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(37,99,235,.15); border-color: transparent; }
.value-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; color: #fff; font-size: 32px;
    box-shadow: 0 8px 20px rgba(37,99,235,.25); transition: all .4s ease;
}
.value-card:hover .value-icon { transform: rotate(360deg) scale(1.1); }
.value-card h3 { font-size: 22px; font-weight: 700; color: #1e293b; margin-bottom: 15px; }
.value-card p  { font-size: 15px; color: #64748b; line-height: 1.8; margin: 0; }

/* Team */
.team-section { margin-bottom: 40px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.team-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,.07); transition: all .35s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(37,99,235,.15); }
.team-image {
    width: 100%; height: 280px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    display: flex; align-items: center; justify-content: center;
    font-size: 80px; color: #fff;
}
.team-info { padding: 25px; text-align: center; }
.team-info h4 { font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.team-info p  { font-size: 14px; color: #2563eb; font-weight: 600; margin-bottom: 15px; }
.team-social { display: flex; justify-content: center; gap: 15px; }
.team-social a {
    width: 35px; height: 35px; background: #f1f5f9; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #2563eb; transition: all .3s ease; text-decoration: none;
}
.team-social a:hover { background: linear-gradient(135deg, #2563eb, #0d9488); color: #fff; transform: translateY(-3px); }

/* Legacy info cards (kept for compatibility) */
.contact-info-section { margin-top: 80px; }
.section-title-center {
    text-align: center; font-size: 36px; font-weight: 800; color: #1e293b; margin-bottom: 50px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.info-card {
    background: #fff; padding: 35px 25px; border-radius: 20px; text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,.07); transition: all .35s ease; border: 1px solid #e2e8f0;
}
.info-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(37,99,235,.15); border-color: transparent; }
.info-card-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, #2563eb, #0d9488);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; color: #fff; font-size: 28px;
    box-shadow: 0 8px 20px rgba(37,99,235,.25); transition: all .4s ease;
}
.info-card:hover .info-card-icon { transform: rotate(360deg) scale(1.1); }
.info-card h3 { font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 12px; }
.info-card p  { font-size: 15px; color: #64748b; line-height: 1.8; margin: 0; }
.info-card a  { color: #2563eb; text-decoration: none; font-weight: 600; }
.info-card a:hover { color: #0d9488; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 992px) {
    .contact-content-grid,
    .story-content { grid-template-columns: 1fr; gap: 32px; }
    .map-container { height: 280px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-strip__grid { gap: 20px; }
}

@media (max-width: 768px) {
    .contact-page-section,
    .about-page-section { padding: 50px 0; }
    .contact-form-wrapper { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .section-title-center { font-size: 26px; }
    .contact-info-grid,
    .values-grid,
    .team-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .stat-number { font-size: 40px; }
    .story-image img { height: 300px; }
    .contact-strip__grid { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .info-card-icon, .value-icon { width: 60px; height: 60px; font-size: 24px; }
    .team-image { height: 220px; font-size: 60px; }
}
