/* ======================================================
   CITY GOLD — EXACT INLINE EXTRACTION (DO NOT EDIT)
   ====================================================== */

.delecon-foundation {
  background: #fcfcfc;
}

/* SECTION WRAPPER */
.dcc-sec {
  margin: 25px auto !important;
  max-width: 1200px;
  padding: 0 15px;
}

/* CARD BASE */
.dcc-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* HERO IMAGE */
.cg-hero-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* HERO CARD GRADIENT */
.cg-hero-card {
  background: linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

/* TITLE */
.cg-title {
  font-size: 2.5rem;
  color: #0f172a;
  margin: 15px 0;
}

.cg-title span {
  color: #c5a059;
}

/* HERO TEXT */
.cg-hero-text {
  max-width: 860px;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.8;
}

/* SERVICE MINI GRID */
.svc-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.svc-mini a {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}

.svc-mini a:hover {
  border-color: #c5a059;
  transform: translateY(-3px);
}

.svc-mini i {
  color: #c5a059;
  font-size: 1.5rem;
}

/* TWO COLUMN BLOCK */
.cg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* SECTION COLOR VARIANTS */
.cg-bg-blue { background:#eef2ff; }
.cg-bg-green { background:#f0fdf4; }

/* CTA BUTTON */
.cg-btn {
  margin-top:15px;
  display:inline-block;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NERUL LAYOUT */
.nerul-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
}

.nerul-text {
  flex: 1;
  min-width: 320px;
}

.nerul-map-box {
  flex: 1;
  min-width: 320px;
}

/* INFO BOX */
.cg-info-box {
  margin-top:25px;
  padding:15px;
  background:#f1f5f9;
  border-radius:10px;
  font-size:13px;
  color:#64748b;
  border-left:4px solid #c5a059;
}

/* MAP */
.cg-map {
  border-radius:20px;
  overflow:hidden;
  border:1px solid #ddd;
  height:450px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* SPEC CARD */
.cg-spec-card {
  border-top: 4px solid #c5a059;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.9rem;
}

.spec-table td,
.spec-table th {
  padding: 12px;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.spec-table th {
  background: #f1f5f9;
}

/* LINK GRID - UPDATED FOR MOBILE SMOOTHNESS */
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Changed from 4 to auto-fit */
  gap: 10px;
  margin-top: 20px;
}

.link-grid a {
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  color: #334155;
  border: 1px solid #e2e8f0;
  text-align: center;
  font-weight: 600;
}

.link-grid a:hover {
  background: #0f172a;
  color: #fff;
}

/* FAQ CARD */
.cg-faq {
  border-top: 4px solid #0f172a;
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .link-grid { grid-template-columns: 1fr 1fr; }
  .svc-mini { grid-template-columns: 1fr; }
  .cg-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nerul-layout { gap: 20px; padding: 20px 0; flex-direction: column; } /* Added flex-direction */
  .nerul-text, .nerul-map-box { min-width: 100%; } /* Ensures full width on mobile */
  .cg-map { height: 350px !important; } /* Adjusted height */
  .cg-title { font-size: 1.8rem; }
}/* DELECON® Premium Rounded Gold Buttons */
.btn-premium {
    display: inline-block;
    padding: 14px 30px;
    margin-top: 20px;
    border-radius: 30px; /* Fully rounded corners for mobile comfort */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border: 2px solid #c5a059; /* Thicker border for better visibility */
    background: #ffffff;
    color: #c5a059 !important;
    cursor: pointer;
    text-align: center;
}

.btn-premium:hover {
    background-color: #c5a059;
    color: #ffffff !important;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* Mobile Specific Fix */
@media (max-width: 768px) {
    .btn-premium {
        display: block; /* Makes the button full width of the card */
        width: 100%; 
        box-sizing: border-box;
        padding: 16px 10px; /* Taller button for easier thumb-tapping */
    }
}/* Force the layout to stack and stay large on mobile */
@media (max-width: 768px) {
    .nerul-layout {
        flex-direction: column !important;
    }
    
    .nerul-text, .panvel-map-box {
        width: 100% !important;
        flex: none !important;
    }

    /* This ensures the map container is tall and matches the section above it */
    .panvel-map-box {
        height: 450px !important; 
        margin-top: 20px;
    }
}

/* Ensure the cards in your first screenshot have the same height */
.cg-two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cg-two-col .dcc-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}