/* --- Base Layout Styles for Page 06 --- */
.page-06-auth-section {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  margin-bottom: 200px;
}

.page-06-auth-section * {
  box-sizing: border-box;
}

/* Flex container for responsiveness */
.page-06-auth-container {
  display: flex;
  gap: 100px; 
  margin-bottom: 60px;
}

/* Wrapper jisme charo taraf border ki spacing (20px padding) balanced hai */
.page-06-card-wrapper {
  flex: 1;
  position: relative;
  min-width: 280px;
  padding: 20px; /* Iski wajah se outer border charo taraf se 20px bada dikhega */
}

/* --- Outer Decorative Borders (4-Side Equal) --- */
.page-06-outer-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; /* Input click block na ho */
  z-index: 1;
}

/* Left side wrapper border color - Gold */
.page-06-register-wrapper .page-06-outer-border {
  border: 1px solid #ffbf00;
}

/* Right side wrapper border color - Black */
.page-06-login-wrapper .page-06-outer-border {
  border: 1px solid #063430;
}

/* Forces both inner solid boxes to remain perfectly square */
.page-06-main-card {
  width: 100%;
  aspect-ratio: 1 / 1; 
  position: relative;
  z-index: 2; /* Inner content aur inputs upar rhenge */
}

/* Inner card body framework */
.page-06-card-content {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- Left Card Custom CSS --- */
.page-06-register-card {
  background-color: #ffbf00;
}

.page-06-register-title {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  margin: 0 0 15px 0;
  font-weight: normal;
  color: #063430;
}

.page-06-register-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  color: #063430;
}

/* --- Right Card (Input Fields Form) Custom CSS --- */
.page-06-login-card {
  background-color: #063430;
}

.page-06-login-form {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

.page-06-input-group {
  position: relative;
  width: 100%;
}

/* Underline styles for input fields */
.page-06-input-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  padding: 10px 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-family: Arial, sans-serif;
  outline: none;
  transition: border-color 0.3s ease;
}

.page-06-input-group input::placeholder {
  color: #ffffff;
  opacity: 0.9;
}

.page-06-input-group input:focus {
  border-bottom-color: #F7A707;
}

/* --- Overlapping Action Badges --- */
.page-06-action-btn {
  position: absolute;
  aspect-ratio: 1 / 1;
  border: 1px solid #063430;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 3; /* Sabse upar overlap hoga */
}

/* Register page floating button */
.page-06-send-email-btn {
  width: 26%;
  min-width: 95px;
  bottom: -50px;    /* Aapki accurate layout location */
  right: -10%;
  position: absolute; /* Absolute context validation */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  
  /* 1. Main Innermost Button Color */
  background-color: #063430; 
  color: #ffffff;
  border: none; /* Base border ko clear kiya */

  /* 2. 10px Padding (Alag Background Color) */
  /* box-shadow: 0 0 0 10px [Padding_Color]; */
  box-shadow: 0 0 0 10px #f5f5f5; /* Example: Light gray padding background */

  /* 3. Outer Border (Alag Border Color) */
  /* outline: [Border_Thickness] solid [Border_Color]; */
  outline: 1px solid #063430; /* Example: Gold border outside the padding */
  
  /* Outline ko padding ke theek bahar chipkane ke liye offset */
  outline-offset: 10px; 
}

.page-06-send-email-btn span {
  padding: 5px;
  text-align: center;
  line-height: 1.3;
  font-size: 0.95rem;
  font-weight: bold;
}
/* Login page floating button */
.page-06-login-submit-btn {
  width: 26%;
  min-width: 95px;
  bottom: -50px;  /* Outer boundary ke thoda niche corner pe hanging style */
  right: -50px;
  position: absolute; /* absolute position context */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  
  /* 1. Main Innermost Button Color */
  background-color: #F7A707;
  color: #ffffff;
  border: none; /* Base border clear kiya */

  /* 2. 10px Padding Layer (Alag Background Color) */
  /* box-shadow: 0 0 0 10px [Padding_Color]; */
  box-shadow: 0 0 0 10px #ffffff; /* Transparent white gap padding */

  /* 3. Outer Border (Alag Border Color) */
  /* outline: [Border_Thickness] solid [Border_Color]; */
  outline: 1px solid #F7A707; /* Outside border line matching the button theme */
  
  /* Outline ko exact 10px padding ke edge par set karne ke liye */
  outline-offset: 10px; 
}

.page-06-action-btn span {
  padding: 5px;
  text-align: center;
  line-height: 1.3;
  font-size: 0.95rem;
  font-weight: bold;
}

/* --- Bottom Section Paragraph --- */
.page-06-description-text {
  color: #063430;
  line-height: 1.6;
  font-size: 1.2rem;
  text-align: justify;
  margin-top: 150px;
}

/* --- Responsive Media Queries (Mobile & Tablets) --- */
@media (max-width: 768px) {
  .page-06-auth-container {
    flex-direction: column;
    gap: 80px; 
  }

  .page-06-card-wrapper {
    padding: 15px; /* Mobile par border spacing thodi kam taaki area bache */
  }

  .page-06-send-email-btn {
    right: 10%;
  }

  .page-06-login-submit-btn {
    right: 15px;
  }
}


/* --- Base Styles --- */
.page-06-form-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.page-06-form-container * {
  box-sizing: border-box;
}

/* Form Layout Rows */
.page-06-form-row {
  display: flex;
  gap: 80px;
  margin-bottom: 50px;
  align-items: flex-end;
}

.page-06-form-group {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Base Input Structure */
.page-06-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-size: 1.1rem;
  outline: none;
  font-family: 'Playfair Display', Georgia, serif;
  border-radius: 0;
  transition: border-color 0.25s ease, color 0.25s ease;
}

/* Dark and Gold Themes */
.page-06-black-style .page-06-input {
  border-bottom: 2px solid #063430;
  color: #063430;
  font-weight: bold;
}

.page-06-gold-style .page-06-input {
  border-bottom: 2px solid #F7A707;
  color: #F7A707;
}

.page-06-black-style .page-06-input::placeholder { color: #063430; opacity: 1; }
.page-06-gold-style .page-06-input::placeholder { color: #F7A707; opacity: 1; transition: color 0.25s ease; }

/* Input Focus Actions */
.page-06-gold-style .page-06-input:focus {
  border-bottom-color: #063430;
  color: #063430;
}
.page-06-gold-style .page-06-input:focus::placeholder {
  color: #063430;
}

/* --- Premium Custom Dropdown System --- */
.page-06-custom-dropdown {
  position: relative;
}

.page-06-dropdown-trigger {
  width: 100%;
  border-bottom: 2px solid #F7A707;
  padding: 12px 0;
  color: #F7A707;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}

/* Dropdown Arrow Symbol */
.page-06-dropdown-trigger::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 18px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #F7A707;
  pointer-events: none;
  transition: border-top-color 0.25s ease, transform 0.25s ease;
}

/* --- Open List Panel Configuration (Crucial Part) --- */
.page-06-dropdown-options-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #F7A707;
  border-top: none;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  
  /* Initially Hidden Styles */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.2s;
}

/* Dropdown Option Items */
.page-06-dropdown-option {
  padding: 12px 16px;
  font-size: 1rem;
  color: #F7A707;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Option Hover Logic (Turns completely black/clean layout) */
.page-06-dropdown-option:hover {
  background-color: #fafafa;
  color: #063430;
}

/* --- Active Open State Classes triggered by JS --- */
.page-06-custom-dropdown.page-06-dropdown-open .page-06-dropdown-options-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Turns trigger line & text black when open */
.page-06-custom-dropdown.page-06-dropdown-open .page-06-dropdown-trigger {
  border-bottom-color: #063430;
  color: #063430;
}

/* Flips the arrow and turns black when open */
.page-06-custom-dropdown.page-06-dropdown-open .page-06-dropdown-trigger::after {
  border-top-color: #063430;
  transform: rotate(180deg);
}

/* Stays black once a value is selected */
.page-06-dropdown-trigger.page-06-has-value {
  color: #063430;
  border-bottom-color: #063430;
}
.page-06-dropdown-trigger.page-06-has-value::after {
  border-top-color: #063430;
}

/* --- Media Upload Elements --- */
.page-06-file-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid #F7A707;
  padding: 12px 0;
  color: #F7A707;
  font-size: 1.1rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.page-06-hidden-file { display: none !important; }

.page-06-file-label:hover {
  border-bottom-color: #063430;
  color: #063430;
}

.page-06-icon-svg {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 20px;
  height: 20px;
  color: #F7A707;
  pointer-events: none;
  transition: color 0.25s ease;
}
.page-06-has-icon .page-06-input:focus ~ .page-06-icon-svg,
.page-06-file-label:hover .page-06-icon-svg {
  color: #063430;
}

.page-06-sub-link {
  color: #F7A707;
  font-size: 0.85rem;
  margin-top: 8px;
  cursor: pointer;
  display: inline-block;
}

/* --- Composite & Complex Groups Layout --- */
.page-06-composite-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.page-06-composite-inputs {
  display: flex;
  gap: 40px;
  width: 100%;
}

.page-06-row-label {
  color: #F7A707;
  font-size: 1.05rem;
  white-space: nowrap;
  position: absolute;
  top: 0;
}

.page-06-sub-label {
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
}

.page-06-bank-wrapper {
  max-width: calc(50% - 40px);
}

.page-06-location-row {
  position: relative;
  padding-top: 40px;
}

.page-06-loc-label { top: 0; }

.page-06-location-grid {
  flex: 1;
  display: flex;
  gap: 40px;
}



/* --- Responsive Layout Structure --- */
@media (max-width: 900px) {
  .page-06-form-row {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
    align-items: stretch;
  }

  .page-06-composite-group {
    position: relative;
    padding-top: 50px;
  }

  .page-06-composite-inputs {
    flex-direction: column;
    gap: 30px;
  }

  .page-06-bank-wrapper {
    max-width: 100%;
  }

  .page-06-location-row {
    padding-top: 0;
  }

  .page-06-loc-label {
    position: relative;
    display: block;
    margin-bottom: 15px;
  }

  .page-06-location-grid {
    flex-direction: column;
    gap: 30px;
  }
}



/* --- Base Styles Configuration --- */
.page-06-dynamic-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  background-color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  box-sizing: border-box;
}

.page-06-dynamic-container * {
  box-sizing: border-box;
}

.page-06-form-section {
  margin-bottom: 80px;
}

/* Typography Headings from Mock */
.page-06-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  color: #063430;
  font-weight: normal;
}

.page-06-section-desc {
  color: #063430;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 45px 0;
  text-align: justify;
}

/* Dynamic Rows Layout Wrapper */
.page-06-fields-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-06-dynamic-row {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  animation: page06FadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Input Base Design */
.page-06-input-field-group {
  position: relative;
  width: 50%; /* Image layout guidelines mapping */
  min-width: 280px;
}

.page-06-dynamic-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-size: 1.1rem;
  outline: none;
 font-family: 'Playfair Display', Georgia, serif;
  border-radius: 0;
  transition: border-color 0.25s ease, color 0.25s ease;
}

/* Base Color Theme Layout definitions */
.page-06-gold-style .page-06-dynamic-input {
  border-bottom: 2px solid #F7A707;
  color: #F7A707;
}

/* Placeholder Floating Animation Configuration */
.page-06-floating-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #F7A707;
  font-size: 1.1rem;
  pointer-events: none;
  transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}

/* Interactive Active Rules: Colors flip into Solid Black */
.page-06-dynamic-input:focus {
  border-bottom-color: #063430 !important;
  color: #063430 !important;
}

/* Push label up/disappear cleanly when user clicks or types content */
.page-06-dynamic-input:focus ~ .page-06-floating-label,
.page-06-dynamic-input:not(:placeholder-shown) ~ .page-06-floating-label {
  transform: translateY(-130%);
  font-size: 0.85rem;
  color: #063430;
}

/* Buttons configuration rules */
.page-06-add-btn {
  background: transparent;
  border: none;
  color: #F7A707;
  font-size: 1.05rem;
  cursor: pointer;
  padding: 5px 0;
 font-family: 'Playfair Display', Georgia, serif;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.page-06-add-btn:hover {
  color: #063430;
}

/* --- Premium Cross Dismiss Button --- */
.page-06-remove-btn {
  background: transparent;
  border: none;
  color: #F7A707;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.page-06-remove-btn:hover {
  color: #ff3b30;
  transform: scale(1.1);
}

/* Insertion animation mechanics */
@keyframes page06FadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Media Viewports --- */
@media (max-width: 768px) {
  .page-06-section-title {
    font-size: 2.5rem;
  }
  
  .page-06-dynamic-row {
    gap: 15px;
  }
  
  .page-06-input-field-group {
    width: 75%;
  }
}

/* --- Label Positioning Fix --- */
.page-06-composite-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Input boxes aur top label ke beech ek barabar clean gap banayega */
  position: relative;
}

.page-06-row-label {
  color: #F7A707;
  font-size: 1.05rem;
  white-space: nowrap;
  position: relative; /* Absolute ko remove karke relative kiya taaki space block sahi bane */
  top: auto; /* Purani adjustment reset ki */
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

/* Inputs wrapper configuration background */
.page-06-composite-inputs {
  display: flex;
  gap: 40px;
  width: 100%;
}

.page-06-sub-label {
  display: inline-block; /* block ki jagah inline-block kiya taaki baseline standard responsive rahe */
  font-size: 0.85rem;
  margin-left: 5px; /* Main text ke side me space coordinate system */
}

/* --- Location Section Layout Fix --- */
.page-06-location-row {
  display: flex;
  flex-direction: column; /* Inputs grid ko label ke niche push karne ke liye */
  align-items: flex-start; /* Left alignment maintain rakhne ke liye */
  gap: 15px; /* Label aur input fields ke beech uniform spacing */
  width: 100%;
  position: relative;
}

.page-06-loc-label {
  position: relative; /* Absolute flow hataya taaki space block generate ho sake */
  top: auto; /* Purani top offsets reset ki */
  color: #F7A707;
  font-size: 1.05rem;
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

/* 4-Column Inputs Grid Layer */
.page-06-location-grid {
  width: 100%;
  display: flex;
  gap: 40px;
}

/* --- Responsive Layout for Smaller Screens --- */
@media (max-width: 900px) {
  .page-06-location-grid {
    flex-direction: column; /* Mobile par fields ek ke niche ek clean stack ho jayengi */
    gap: 30px;
  }
}

/* --- Editor Base Container --- */
.page-06-editor-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  background-color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  box-sizing: border-box;
}

.page-06-editor-container * {
  box-sizing: border-box;
}

.page-06-editor-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin: 0 0 25px 0;
  color: #063430;
  font-weight: normal;
}

/* --- Floating Toolbar Panels Layout --- */
.page-06-toolbar-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.page-06-toolbar-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

.page-06-toolbar-separator {
  width: 1px;
  height: 24px;
  background-color: #e0e0e0;
  margin: 0 4px;
}

/* --- Ask Jormi AI Premium Look Button --- */
.page-06-ai-btn {
  background: linear-gradient(135deg, #fbf4ec 0%, #f3e5f5 100%);
  border: 1px solid rgba(203, 172, 126, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.page-06-ai-text {
  font-weight: bold;
  font-size: 0.9rem;
  background: linear-gradient(90deg, #9c27b0, #cbac7e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Size Selector Dropdown --- */
.page-06-editor-dropdown {
  position: relative;
}

.page-06-dropdown-btn {
  background: #f5f5f5;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #063430;
}

.page-06-arrow-down {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #063430;
}

.page-06-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  list-style: none;
  padding: 6px 0;
  margin: 4px 0 0 0;
  width: 140px;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none;
}

.page-06-dropdown-menu li {
  padding: 8px 14px;
  font-size: 0.9rem;
  cursor: pointer;
  color: #063430;
}

.page-06-dropdown-menu li:hover {
  background-color: #f5f5f5;
}

/* --- Core Control Buttons --- */
.page-06-tool-btn {
  background: transparent;
  border: none;
  color: #063430;
  font-size: 1.05rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.page-06-tool-btn:hover {
  background-color: #f5f5f5;
  color: #063430;
}

/* --- Dynamic Color Picker Interface --- */
.page-06-color-tool-wrapper {
  position: relative;
  width: 24px;
  height: 24px;
}

.page-06-color-label {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff);
  cursor: pointer;
}

#page-06-text-color {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

/* --- Content Editable Area & Signature Bottom Gold Line --- */
.page-06-editable-area {
  width: 100%;
  min-height: 160px;
  border: none;
  border-bottom: 2px solid #F7A707;
  padding: 15px 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #F7A707;
  outline: none;
  margin-top: 10px;
  transition: border-bottom-color 0.25s, color 0.25s;
}

/* Focus and Type Shift logic to black state */
.page-06-editable-area:focus {
  border-bottom-color: #063430;
  color: #063430;
}

/* Pure CSS Minimalist Placeholder logic */
.page-06-editable-area:empty:not(:focus)::before {
  content: attr(placeholder);
  color: #F7A707;
  opacity: 1;
  pointer-events: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .page-06-editor-heading { font-size: 2.5rem; }
  .page-06-toolbar-wrapper { flex-direction: column; align-items: stretch; }
  .page-06-toolbar-panel { width: 100%; justify-content: space-between; }
}


/* --- Master Map Block Layout --- */
.page-06-map-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  background-color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  box-sizing: border-box;
}

.page-06-map-container * {
  box-sizing: border-box;
}

/* Luxury Serif Typography Title Heading */
.page-06-map-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  letter-spacing: 1px;
  margin: 0 0 35px 0;
  color: #063430;
  font-weight: normal;
}

/* --- Input Floating Framework Setup --- */
.page-06-map-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

#page-06-map-url-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-size: 1.15rem;
  outline: none;
 font-family: 'Playfair Display', Georgia, serif;
  border-radius: 0;
  transition: border-color 0.25s ease, color 0.25s ease;
}

/* Premium signature gold accent style */
.page-06-gold-style #page-06-map-url-input {
  border-bottom: 2px solid #F7A707;
  color: #F7A707;
}

/* Dynamic Floating Label Logic */
.page-06-map-floating-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #F7A707;
  font-size: 1.15rem;
  pointer-events: none;
  transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}

/* Turn layout borders completely solid black on input interaction */
#page-06-map-url-input:focus {
  border-bottom-color: #063430 !important;
  color: #063430 !important;
}

/* Animate floating label scale properties seamlessly */
#page-06-map-url-input:focus ~ .page-06-map-floating-label,
#page-06-map-url-input:not(:placeholder-shown) ~ .page-06-map-floating-label {
  transform: translateY(-140%);
  font-size: 0.9rem;
  color: #063430;
}

/* --- Map Preview Frame Aspect Block --- */
.page-06-map-preview-box {
  width: 100%;
  aspect-ratio: 16 / 9; /* Fluid wide responsive aspect canvas */
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #fcfcfc;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.page-06-map-preview-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .page-06-map-heading {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  
  .page-06-map-preview-box {
    aspect-ratio: 4 / 3; /* Highly compact viewports map scale protection */
  }
}


/* --- Base Container --- */
.page-06-video-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
  background-color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  box-sizing: border-box;
}

.page-06-video-container * {
  box-sizing: border-box;
}

/* Luxury Serif Title Style */
.page-06-video-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  letter-spacing: 1px;
  margin: 0 0 45px 0;
  color: #063430;
  font-weight: normal;
}

/* Columns Framework Grid Setup */
.page-06-video-row {
  display: flex;
  gap: 80px;
  align-items: flex-end;
}

.page-06-video-group {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* --- Input Fields Styles --- */
.page-06-video-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 0;
  font-size: 1.15rem;
  outline: none;
  font-family: 'Playfair Display', Georgia, serif;
  border-radius: 0;
  transition: border-color 0.25s ease, color 0.25s ease;
}

/* Premium signature gold accent style */
.page-06-video-gold-style .page-06-video-input {
  border-bottom: 2px solid #F7A707;
  color: #F7A707;
}

/* --- Dynamic Floating Label Logic --- */
.page-06-video-floating-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #F7A707;
  font-size: 1.15rem;
  pointer-events: none;
  transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}

/* Turn layout borders completely solid black on interaction */
.page-06-video-input:focus {
  border-bottom-color: #063430 !important;
  color: #063430 !important;
}

/* Animate floating label scale properties seamlessly */
.page-06-video-input:focus ~ .page-06-video-floating-label,
.page-06-video-input:not(:placeholder-shown) ~ .page-06-video-floating-label {
  transform: translateY(-140%);
  font-size: 0.9rem;
  color: #063430;
}

/* --- Left Side: Media Upload Layout --- */
.page-06-video-upload-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid #F7A707;
  padding: 12px 0;
  color: #F7A707;
  font-size: 1.15rem;
  position: relative;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.page-06-video-hidden-file {
  display: none !important;
}

.page-06-video-icon-svg {
  width: 22px;
  height: 22px;
  color: #F7A707;
  pointer-events: none;
  transition: color 0.25s ease;
}

/* --- Hover / Focus State Mechanics --- */
.page-06-video-upload-label:hover {
  border-bottom-color: #063430;
  color: #063430;
}

.page-06-video-upload-label:hover .page-06-video-icon-svg {
  color: #063430;
}

/* --- Responsive Media Viewports --- */
@media (max-width: 768px) {
  .page-06-video-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .page-06-video-row {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
}

/* --- Base Architecture --- */
.page-06-sales-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  background-color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  box-sizing: border-box;
}

.page-06-sales-container * {
  box-sizing: border-box;
}

/* Luxury Serif Typography */
.page-06-sales-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.8rem;
  letter-spacing: 1px;
  margin: 0 0 55px 0;
  color: #063430;
  font-weight: normal;
}

/* Form Row Grid Config */
.page-06-sales-row {
  display: flex;
  gap: 80px;
  margin-bottom: 50px;
  align-items: flex-end;
}

.page-06-sales-group {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* --- Input Fields Styles --- */
.page-06-sales-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #F7A707;
  padding: 12px 0;
  font-size: 1.15rem;
  color: #F7A707;
  outline: none;
  font-family: 'Playfair Display', Georgia, serif;
  border-radius: 0;
  transition: border-color 0.25s ease, color 0.25s ease;
}

/* --- Floating Label Core Logic --- */
.page-06-sales-floating-label {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #F7A707;
  font-size: 1.15rem;
  pointer-events: none;
  transition: transform 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}

/* Turn borders completely black on focus activation */
.page-06-sales-input:focus {
  border-bottom-color: #063430 !important;
  color: #063430 !important;
}

.page-06-sales-input:focus ~ .page-06-sales-floating-label,
.page-06-sales-input:not(:placeholder-shown) ~ .page-06-sales-floating-label {
  transform: translateY(-140%);
  font-size: 0.9rem;
  color: #063430;
}

/* --- Custom Dropdown Framework --- */
.page-06-sales-dropdown {
  position: relative;
}

.page-06-sales-trigger {
  width: 100%;
  border-bottom: 2px solid #F7A707;
  padding: 12px 0;
  color: #F7A707;
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}

/* Custom Chevron Arrow System Indicator */
.page-06-sales-trigger::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 18px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #F7A707;
  pointer-events: none;
  transition: border-top-color 0.25s ease, transform 0.25s ease;
}

/* --- Dropdown Open Menu Panel Styles --- */
.page-06-sales-options-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #F7A707;
  border-top: none;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  
  /* Initial Hidden State Animation Layer */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.2s;
}

.page-06-sales-option {
  padding: 12px 16px;
  font-size: 1rem;
  color: #F7A707;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover state options turn premium solid black layout style */
.page-06-sales-option:hover {
  background-color: #fafafa;
  color: #063430;
  font-weight: bold;
}

/* --- Active Dynamic JS Open States Toggles --- */
.page-06-sales-dropdown.page-06-dropdown-open .page-06-sales-options-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-06-sales-dropdown.page-06-dropdown-open .page-06-sales-trigger {
  border-bottom-color: #063430;
  color: #063430;
}

.page-06-sales-dropdown.page-06-dropdown-open .page-06-sales-trigger::after {
  border-top-color: #063430;
  transform: rotate(180deg); /* Modern touch: chevron arrow flips upside-down cleanly */
}

/* Selected value persistent dark focus highlight style rules */
.page-06-sales-trigger.page-06-has-value {
  color: #063430;
  border-bottom-color: #063430;
}
.page-06-sales-trigger.page-06-has-value::after {
  border-top-color: #063430;
}

/* --- Bottom Double-Border Frame Buttons --- */
.page-06-sales-actions-row {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.page-06-btn-outer-frame {
  border: 1px solid #063430;
  padding: 8px;
  display: inline-block;
  background-color: transparent;
}

.page-06-sales-btn {
  background-color: #063430;
  color: #ffffff;
  border: none;
  padding: 14px 35px;
  font-size: 1.15rem;
  font-family: 'Playfair Display', Georgia, serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-06-sales-btn:hover {
  background-color: #F7A707;
  color: #063430;
}

/* --- Responsive Media Adjustments --- */
@media (max-width: 850px) {
  .page-06-sales-heading {
    font-size: 2.6rem;
  }
  
  .page-06-sales-row {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
  
  .page-06-sales-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  
  .page-06-btn-outer-frame, 
  .page-06-sales-btn {
    width: 100%;
    text-align: center;
  }
}

/* --- Bottom Action Buttons Row Container --- */
.page-06-sales-actions-row {
  display: flex;
  justify-content: space-between; /* Ya 'center' kar sakte hain agar layout compact rakhna ho */
  gap: 30px;
  margin-top: 60px;
  width: 100%; /* Pure parent wrapper ki full width lega */
}

/* Har ek button ke outer decorative frame ko equal width me force karega */
.page-06-btn-outer-frame {
  flex: 1; /* Yeh property teeno boxes ko automatically ek barabar perfect width me stretch kar degi */
  border: 1px solid #063430;
  padding: 8px;
  display: inline-block;
}

/* Main inner black solid button block */
.page-06-sales-btn {
  width: 100%; /* Apne parent equal-sized outer frame ke andar full size stretch hoga */
  background-color: #063430;
  color: #ffffff;
  border: none;
  padding: 14px 20px; /* Horizontal padding ko thoda kam kiya taaki text auto-adjust ho sake */
  font-size: 1.15rem;
  font-family: 'Playfair Display', Georgia, serif;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-06-sales-btn:hover {
  background-color: #F7A707;
  color: #063430;
}

/* --- Mobile Viewports Layout Support --- */
@media (max-width: 768px) {
  .page-06-sales-actions-row {
    flex-direction: column; /* Choti screens par grid automatically vertical ek k niche ek stack ho jayega */
    gap: 20px;
  }
}


/* --- Base Container --- */
.page-06-listing-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

/* Heading Styling */
.page-06-listing-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 4rem;
  color: #F7A707; /* Gold tone from screenshot */
  margin: 0 0 40px 0;
  font-weight: normal;
}

/* Horizontal Divider */
.page-06-divider {
  border: none;
  border-top: 2px solid #cbac7e;
  margin: 40px 0;
}

/* Listing content gap */
.page-06-listing-content {
  min-height: 200px; /* Placeholder space */
}

/* --- Pagination Styling --- */
.page-06-pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-06-pagination {
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-06-nav-text {
  color: #F7A707;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
}

.page-06-page-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #F7A707;
  background-color: transparent;
  color: #F7A707;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* Active State */
.page-06-page-btn.page-06-active {
  background-color: #F7A707;
  color: #ffffff;
  border-color: #F7A707;
}

/* Hover effects */
.page-06-page-btn:hover:not(.page-06-active) {
  background-color: #fcf4e8;
}

.page-06-nav-text:hover {
  color: #063430;
}


/* After-Login Section (बाय-डिफ़ॉल्ट छिपा रहेगा) */
.page-06-after-login-section {
  display: none; /* शुरुआत में बंद */
  width: 100%;
  padding: 60px 60px;
  background-color: #ffffff;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* JavaScript से यह क्लास जुड़ते ही सेक्शन दिखेगा */
.page-06-after-login-section.page-06-show-section {
  display: block;
  animation: page06FadeIn 0.5s ease-in-out;
}

/* स्मूथ एंट्री एनीमेशन */
@keyframes page06FadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container & Inner Content Styling */
.page-06-after-login-container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-06-welcome-card {
  background-color: #03211c; /* डार्क ग्रीन थीम */
  color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-06-welcome-card h2 {
  margin: 0 0 10px 0;
  font-size: 28px;
}

.page-06-user-name {
  color: #e5b038; /* गोल्ड एक्सेंट */
}

.page-06-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-06-dash-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-06-dash-card h3 {
  margin: 0 0 10px 0;
  color: #03211c;
}