:root { --brand-color: #ff5722; --brand-dark: #e64a19; --bg-body: #f4f6f8; --font-head: 'Roboto Condensed', sans-serif; --font-body: 'Inter', sans-serif; --card-border: #e1e4e8; --text-muted: #6c757d; --success-color: #27ae60; --warning-color: #f39c12; --danger-color: #e74c3c; --info-color: #3498db; }
body { font-family: var(--font-body); background-color: var(--bg-body); color: #111; font-size: 14px; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
a:hover { color: var(--brand-color); }
.page-header { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 60px 0; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
.page-header-content { position: relative; z-index: 1; text-align: center; }
.page-header h1 { font-family: var(--font-head); font-weight: 800; font-size: 42px; color: #fff; margin-bottom: 15px; }
.page-header-description { max-width: 800px; margin: 0 auto; font-size: 15px; line-height: 1.8; color: rgba(255, 255, 255, 0.8); font-weight: 400; padding: 0 20px; }
.contact-info-section { margin-top: -40px; position: relative; z-index: 2; margin-bottom: 50px; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-info-card { background: #fff; border-radius: 12px; padding: 30px 25px; text-align: center; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; border-bottom: 4px solid transparent; }
.contact-info-card:hover { transform: translateY(-8px); border-bottom-color: var(--brand-color); }
.contact-info-card .icon-wrap { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0.05) 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: all 0.3s ease; }
.contact-info-card:hover .icon-wrap { background: var(--brand-color); }
.contact-info-card .icon-wrap i { font-size: 28px; color: var(--brand-color); transition: all 0.3s ease; }
.contact-info-card:hover .icon-wrap i { color: #fff; }
.contact-info-card h5 { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 10px; color: #111; }
.contact-info-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.contact-info-card a { color: var(--brand-color); font-weight: 600; }
.contact-main-section { margin-bottom: 50px; }
.contact-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); overflow: hidden; margin-bottom: 30px; }
.contact-card .card-header { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); padding: 25px 30px; color: #fff; }
.contact-card .card-header h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin: 0 0 8px; display: flex; align-items: center; gap: 12px; }
.contact-card .card-header h3 i { color: var(--brand-color); }
.contact-card .card-header p { font-size: 14px; color: rgba(255, 255, 255, 0.7); margin: 0; line-height: 1.6; }
.contact-card .card-body { padding: 30px; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 8px; }
.contact-form label .required { color: var(--danger-color); margin-left: 3px; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 14px 18px; border: 2px solid #e8e8e8; border-radius: 10px; font-size: 14px; font-family: var(--font-body); transition: all 0.3s ease; background: #fafafa; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--brand-color); background: #fff; box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #aaa; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-color: #fafafa; }
.btn-submit { display: inline-flex; align-items: center; gap: 10px; padding: 15px 40px; background: var(--brand-color); color: #fff; border: none; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-submit:hover { background: var(--brand-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 87, 34, 0.3); }
.btn-submit i { font-size: 14px; }
.sidebar-card { background: #fff; border-radius: 12px; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); overflow: hidden; margin-bottom: 25px; }
.sidebar-card .card-header { padding: 20px 25px; border-bottom: 1px solid #f0f0f0; }
.sidebar-card .card-header h4 { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.sidebar-card .card-header h4 i { color: var(--brand-color); }
.sidebar-card .card-header p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.sidebar-card .card-body { padding: 25px; }
.social-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.social-link-item { display: flex; align-items: center; gap: 12px; padding: 15px; background: #f8f9fa; border-radius: 10px; transition: all 0.3s ease; cursor: pointer; }
.social-link-item:hover { background: var(--brand-color); transform: translateY(-3px); }
.social-link-item i { font-size: 20px; color: var(--brand-color); width: 24px; text-align: center; transition: all 0.3s ease; }
.social-link-item:hover i { color: #fff; }
.social-link-item span { font-size: 13px; font-weight: 600; color: #333; transition: all 0.3s ease; }
.social-link-item:hover span { color: #fff; }
.map-section { margin-bottom: 50px; }
.map-container { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05); }
.map-header { padding: 20px 25px; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; justify-content: space-between; }
.map-header h4 { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin: 0; display: flex; align-items: center; gap: 10px; }
.map-header h4 i { color: var(--brand-color); }
.map-header a { font-size: 13px; font-weight: 600; color: var(--brand-color); display: flex; align-items: center; gap: 6px; }
.map-placeholder { height: 350px; background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #aaa; }
.map-placeholder i { font-size: 50px; margin-bottom: 15px; }
.map-placeholder span { font-size: 14px; }
@media (max-width: 1199px) {
    .page-header h1 { font-size: 36px; margin-bottom: 12px;}
    .page-header-description { font-size: 14px;}
    .contact-info-card .icon-wrap { width: 60px; height: 60px;}
    .contact-info-section {margin-top: -30px; margin-bottom: 30px;}
    .page-header { padding: 50px 0;}
    .contact-card .card-header {padding: 20px 20px;}
    .contact-card .card-body {padding: 20px;}
    .contact-card .card-header h3 { font-size: 20px;}
    .contact-form input, .contact-form textarea, .contact-form select { padding: 12px 15px;}
    .sidebar-card .card-header { padding: 15px 18px;}
    .sidebar-card .card-body {padding: 18px;}
    .social-link-item { gap: 10px; padding: 12px;}
    .social-links-grid { gap: 10px;}
    .btn-submit { gap: 10px; padding: 12px 28px; font-size: 14px;}
    .contact-form label { font-size: 12px; margin-bottom: 4px;}
    .contact-card { margin-bottom: 16px;}
    .contact-main-section {margin-bottom: 25px;}
    .map-header { padding: 16px 20px;}

}
@media (max-width: 991px) {
.page-header { padding: 50px 0; }
.page-header h1 { font-size: 30px; }
.page-header-description { font-size: 14px; line-height: 1.7; }
.contact-info-section { margin-top: -30px; }
.contact-info-grid { grid-template-columns: repeat(3, 1fr); }
.contact-info-card { padding: 25px 18px;}
.contact-info-card h5 { font-size: 16px;}
.contact-info-card p { font-size: 12px;}
.contact-main-section { margin-bottom: 0;}
.sidebar-card { margin-bottom: 20px;}
.map-header h4 { font-size: 16px;}
.sidebar-card .card-header h4 { font-size: 16px;}
.contact-card .card-header h3 { font-size: 18px;}
}
@media (max-width: 767px) {
.page-header { padding: 40px 0; }
.page-header h1 { font-size: 28px; }
.page-header-description { font-size: 13px; line-height: 1.7; padding: 0 15px; }
.contact-info-card { padding: 20px 15px; }
.contact-card .card-header, .contact-card .card-body { padding: 20px; }
.social-links-grid { grid-template-columns: repeat(3, 1fr); }
.map-placeholder { height: 250px; }
}
@media (max-width: 575px) {
.btn-submit { width: 100%; justify-content: center; }
.contact-info-card .icon-wrap { width: 60px; height: 60px; }
.contact-info-card .icon-wrap i { font-size: 24px; }
.social-links-grid { grid-template-columns: 1fr; }
.contact-info-grid { grid-template-columns: 1fr; }

}