/* =========================================
   ULTRA-PREMIUM CONTACT PAGE (DARK GLASS)
   ========================================= */

:root {
  --contact-bg: #0f0f11;
  --contact-card: rgba(25, 25, 30, 0.6);
  --contact-border: rgba(255, 255, 255, 0.05);
  --contact-text: #fff;
  --contact-muted: #aaa;
  --contact-orange: #f7931e;
  --contact-orange-glow: rgba(247, 147, 30, 0.4);
}

body {
  background-color: #f8f9fa; /* Base body color */
}

/* Hero Section */
.contact-hero-v2 {
  position: relative;
  background: linear-gradient(rgba(15, 15, 17, 0.85), rgba(15, 15, 17, 0.85)), url('../images/gallery/img2.jpg') center/cover no-repeat;
  padding: 120px 0 80px;
  overflow: hidden;
  color: var(--contact-text);
}

.contact-hero-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(circle, rgba(247,147,30,0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title-main {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title-main span {
  color: var(--contact-orange);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--contact-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Layout Setup */
.contact-section-v2 {
  position: relative;
  padding: 80px 0 100px;
  background: #fff;
}

.contact-wrapper {
  background: var(--contact-bg);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
  display: flex;
  flex-wrap: wrap;
}

/* Info Side (Left) */
.contact-info-side {
  flex: 1 1 40%;
  padding: 60px;
  background: linear-gradient(135deg, #1a1a20 0%, #0f0f11 100%);
  color: var(--contact-text);
  border-right: 1px solid var(--contact-border);
  position: relative;
}

.info-side-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--contact-orange), #ffb347);
}

.c-info-block {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.c-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(247, 147, 30, 0.1);
  color: var(--contact-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.c-info-block:hover .c-info-icon {
  background: var(--contact-orange);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--contact-orange-glow);
}

.c-info-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.c-info-text p, .c-info-text a {
  color: var(--contact-muted);
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.c-info-text a:hover {
  color: var(--contact-orange);
}

/* Socials */
.c-socials {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}

.c-soc-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--contact-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contact-text);
  font-size: 16px;
  transition: all 0.3s ease;
}

.c-soc-link:hover {
  background: var(--contact-orange);
  border-color: var(--contact-orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--contact-orange-glow);
}

/* Form Side (Right) */
.contact-form-side {
  flex: 1 1 60%;
  padding: 60px;
  background: #fff;
}

.form-header {
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.form-header p {
  color: #666;
}

/* The Awesome Form Fields */
.g-input-wrap {
  position: relative;
  margin-bottom: 30px;
}

.g-input {
  width: 100%;
  background: #f4f5f7;
  border: 2px solid transparent;
  padding: 18px 20px 18px 55px; /* room for icon */
  border-radius: 16px;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  font-weight: 500;
}

.g-input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.g-input:focus {
  outline: none;
  background: #fff;
  border-color: var(--contact-orange);
  box-shadow: 0 10px 25px rgba(247, 147, 30, 0.15);
}

.g-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 18px;
  transition: all 0.3s ease;
}

.g-input:focus ~ .g-icon {
  color: var(--contact-orange);
}

textarea.g-input {
  min-height: 150px;
  padding-top: 20px;
  resize: none;
}

textarea.g-input ~ .g-icon {
  top: 30px;
  transform: none;
}

/* Submit Button */
.g-submit-btn {
  background: #111;
  color: #fff;
  border: none;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.g-submit-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--contact-orange), #ffb347);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.g-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px var(--contact-orange-glow);
}

.g-submit-btn:hover::before {
  opacity: 1;
}

.g-submit-btn span, .g-submit-btn i {
  position: relative;
  z-index: 2;
}

.g-submit-btn:hover i {
  transform: translateX(5px);
}

/* Success Alert */
.v2-alert {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  color: #155724;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.v2-alert i {
  font-size: 24px;
  color: #28a745;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-info-side, .contact-form-side {
    flex: 1 1 100%;
  }
}
