/* ==========================================
   CONTACT PAGE STYLING
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0b0f19;
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
}

.contact-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 30px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.back-btn:hover {
    color: #ffffff;
    border-color: #38bdf8;
   
    transform: translateX(-3px);
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #38bdf8;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.contact-header p {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Wrapper Grid */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

/* Info Card (Left) */
.contact-info-card {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(10px);
}

.contact-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.info-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: #38bdf8;
    margin-top: 3px;
}

.info-item span {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item a, .info-item p {
    color: #e2e8f0;
    font-size: 0.95ln;
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    color: #38bdf8;
    text-decoration: underline;
}

/* Social Box */
.social-links-box {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links-box span {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #38bdf8;
}

/* Form Card (Right) */
.contact-form-card {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #38bdf8;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.1s;
    margin-top: 10px;
}

.btn-submit:hover {
    opacity: 0.9;
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
.site-footer {
  background-color: #080e18; /* Dark Navy Background */
  color: #ffffff;
  padding: 60px 40px 30px 40px;
  font-family: Arial, sans-serif;
}

/* 1. TOP 5 COLUMNS LAYOUT */
.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 Barabar Columns */
  gap: 30px;
  margin-bottom: 50px;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #a0aab8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* 2. MIDDLE BRANDING & SOCIALS */
.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
}

/* Brand OMX Text */
.footer-brand h2 {
  font-size: 48px;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.footer-brand span {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #a0aab8;
}

/* Social Icons (Clean without box) */
.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-socials a {
  color: #ffffff;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  color: #a0aab8;
  transform: translateY(-2px);
}

/* 3. DIVIDER LINE */
.footer-divider {
  border: 0;
  border-top: 1px solid #1a2332;
  margin: 20px 0 25px 0;
}

/* 4. BOTTOM COPYRIGHT & NOTES */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #a0aab8;
}

.optout-link {
  text-align: right;
  margin-bottom: 15px;
}

.optout-link a {
  color: #a0aab8;
  text-decoration: underline;
  font-size: 12px;
}

.copyright-text {
  line-height: 1.8;
  margin-bottom: 25px;
}

.copyright-text a {
  color: #a0aab8;
  text-decoration: underline;
}

.copyright-text strong {
  color: #ffffff;
}

.footer-note {
  font-size: 13px;
  color: #ffffff;
}

/* RESPONSIVE DESIGN (FOR MOBILE/TABLET) */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .optout-link {
    text-align: center;
  }
}
